Click here to Skip to main content
15,899,676 members

Comments by Member 13507572 (Top 2 by date)

Member 13507572 15-Nov-17 3:37am View    
You guys are right, I did not add enough info -

So I started writing up a better problem description, where I noticed when I copied the URL into the forum my url was like this

"http://192.168.178.194:8080/jsonrpc?request={%22jsonrpc%22:%222.0%22,%22method%22:%22VideoLibrary.Scan%22}"

so with %22, I copied them in my string instead of " and it worked.

Thanks again for your help, I guess I was just focused on the wrong thing.
Member 13507572 14-Nov-17 6:11am View    
I tried with "
Unfortunately, it came into the url

/jsonrpc?request={"jsonrpc":"2.0","method":"VideoLibrary.Scan"}

I get a JSON parse error (also with the other attempts)

error
code -32700
message "Parse error."
id null
jsonrpc "2.0"

You might be right, the error can be somewhere else. But if I manual put the url into the browser it works fine


Karthnik,

This is the expected result in the browser - http://kodi:Cami2017@192.168.178.194:8080/jsonrpc?request={"jsonrpc":"2.0","method":"VideoLibrary.Scan"}


Here is my attempt with single quote -

string tmpurl = @"http://text:moretext@number:morenumbers/jsonrpc?request={jsonrpc':'2.0','method':'VideoLibrary.Scan'}";


tmpurl = tmpurl.Replace("'","\"");

Process.Start(url);