android - How to pass parameters to facebook Graph Search Api -


i want pass parameters url .

https://graph.facebook.com/me?fields=music.fields(videos)

it easy pass parameters https://graph.facebook.com/me?fields=music , using , bundle parameters

bundle bun = new bundle();<br> bun.putstring("fields", "music"); 

but stuck @ music.fields(videos) section unable find proper way send parameters url , have tried

bundle bun = new bundle(); bun.putstring("fields", "music"); bun.putstring("music", "name"); 

after doing , got want ,

bundle bun = new bundle(); bun.putstring("fields", "music.fields(videos)"); 

Comments

Popular posts from this blog

Detect support for Shoutcast ICY MP3 without navigator.userAgent in Firefox? -

web - SVG not rendering properly in Firefox -

java - JavaFX 2 slider labelFormatter not being used -