Hello,
I have this test application:
http://sandbox.orkut.com/Main#AppInfo.aspx?appId=198178950691
As you can see from the URL above, three users have installed the
application:
- Filipe (15852577531273657289)
- Bruno (13544770403905541549)
- Dudu (03155532612890049871)
I can call the fetchPerson method for the first two, but for some
reason it always fails for the third. Here's a sample code:
var c = new org.opensocial.client.OpenSocialClient("orkut.com");
c.setProperty
(org.opensocial.client.OpenSocialClient.Properties.REST_BASE_URI,
"http://www.orkut.com/social/rest");
c.setProperty
(org.opensocial.client.OpenSocialClient.Properties.CONSUMER_SECRET,"XXXXX");
c.setProperty
(org.opensocial.client.OpenSocialClient.Properties.CONSUMER_KEY,"orkut.com:YYYYY");
org.opensocial.data.Person person = c.fetchPerson
("15852577531273657289");
org.opensocial.data.Person person2 = c.fetchPerson
("13544770403905541549");
org.opensocial.data.Person person3 = c.fetchPerson
("03155532612890049871"); // <-- 401 Error
I'm using the latest version of the C# library from the SVN (http://
code.google.com/p/opensocial-net-client/).
Any ideas on what might be happening here?
--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google Groups
"Orkut Developer Forum" group.
To post to this group, send email to [email protected]
To unsubscribe from this group, send email to
[email protected]
For more options, visit this group at
http://groups.google.com/group/opensocial-orkut?hl=en
-~----------~----~----~----~------~----~------~--~---