Hi.
I have a question about shindig.
My shindig is up to date(Revision: 689930)
I have created my own PHP page.
xml page is included in that page. and it will go to shindig server
for getting data.
But In shindig server I can't get Post data.
1. POST
http://xxx.com/social/rpc?st=8000010303%3A8000010303%3A4395%3Ashindig%3Ahttp%253A%2F%2F192.168.10.116%2Fprofile%2Fopensocial%2Ffriends.xml%3A0
POST:
[
{
"method":"people.get",
"params": {
"userId":["@viewer"],
"groupId":"@self",
"fields":["id","name","thumbnailUrl"]
},
"id":"viewer"
},
{
"method":"people.get",
"params":{
"userId":["@viewer"],
"groupId":"@friends",
"fields":["id","name","thumbnailUrl"],
"count":100,
"sortBy":"topFriends",
"filterBy":"all"
},
"id":"viewerFriends"
}
]
2. RESPONSE
in php page in shindig server
echo "<pre>";
var_dump($_REQUEST);
echo "</pre>";
=>
<pre>array(15) {
["st"]=>
string(794) "8000010303:8000010303:4395:shindig:http%3A//
192.168.10.116/profile/opensocial/friends.xml:0"
}
</pre>
There is no information about "friend" and "viewerFriends"
If you have any information about above thing.
Please let me know.
Thanks