Philips TVs

I found the jointspace API for the Philips TVs and there for example the code for the INFO key is:

ip-address:1925/1/input/key

{
“key”: “Info”
}
method : POST
I want to create a RoomieCodes.plist but how to write it in the file ?

A very similar example code is provided in the DDK in the “Sample HTTP” folder. That would be:

POST /1/input/key

{
“key”: “Info”
}

Thank you.

all in one row or how is the exact format ?

Per the DDK, make sure to use Xcode to enter that kind of format. You can do it with something like BBEdit, but it’s going to be safer to use Xcode. The formatting is exactly per above and as shown in the DDK with examples of exactly this item, multiple lines.

Thank you.