-
Notifications
You must be signed in to change notification settings - Fork 6
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Feedback #28
Comments
The script is receiving feedback using HTTP-JSON protocol via the webserver interface. However there's another way of receiving the feedback that is via TCP on port 9090. Not all methods are available on both connection methods and protocols. In your case, I do believe that the Input.OnInputRequested is not supported in the JSON. Maybe you can tell me exactly what type of input/actions that you want to execute and we can try to see if there's a way to work around it. |
Hi Terence ! I already have a system configured TCP port 9090 for XBMC. I can receive feedback from XBMC and parse it whitout problem but I want delete this system and parse feedback from your script, but I dont know how but the feedback in your script Thanks |
Erm ... currently there is already a search function implemented in the module but it's not using the search protocol from XBMC itself but rather just searching the library database in the global arrays. Will need to study more into this. You can actually test out the JSON commands and feedbacks to the XBMC system using Google Chrome's Simple REST client - can try sending some commands and see what feedbacks are given back. Then if you can get me the feedback strings, then we'll see how we can progress from there. |
Hi Terence !
Is it possible to receive feedback from XBMC in your script. I want when a receive this feedback from XBMC "method":"Input.OnInputRequested". parse the result.
What is the script function receives all feedback. I try this function in your script 'self.rpc = function (method, params, callback)'. I put this in the function
method = data.method;
if (method == "Input.OnInputRequested") {
CF.flipToPage ("Movie");
}
without success.
For now I create another system without any problem, but I would better integrate to your script.
Thanks
Steven
The text was updated successfully, but these errors were encountered: