Sorry, sent you the java version. Here is the link for .NET http://code.google.com/p/opensocial-net-client/
Cheers Robson Dantas 2009/11/1 Robson Dantas <[email protected]> > Akash, > > I dont know what kind of oauth lib you´re using, but i got some problems > too, using the library which was described on wiki.opensocial.org . > > After spending some time debugging, figured out that it was a problem on > the lib. Just tried another one, and worked. I´ve also updated the wiki, so, > try to use this lib: > > http://code.google.com/p/opensocial-java-client/ > > Let me know if it helps you. > > Robson Dantas > > > > 2009/10/28 Akash <[email protected]> > > >> Not sure what was Ranjit's problem. My application is still having >> issues. >> >> On Oct 26, 9:38 pm, Ranjeet Gill <[email protected]> wrote: >> > Thanks its working now. >> > Ranjit >> > >> > On Mon, Oct 26, 2009 at 4:11 AM, Akash <[email protected]> >> wrote: >> > >> > > Yes checked and found certificate is not the issue. >> > >> > > Any idea on after looking at the code whether it is fine? >> > >> > > Thanks >> > >> > > On Oct 13, 7:44 pm, "[email protected]" <[email protected]> wrote: >> > > > check your cetificate file. Be sure not to open or save certificates >> > > > in wordpad etc use notepad >> > >> > > > On Oct 10, 7:45 pm,Akash<[email protected]> wrote: >> > >> > > > > Hi, >> > > > > I am running into some issues regarding Authentication of my >> signed >> > > > > request. Validation of signed request always fails. >> > >> > > > > For simplicity of debugging, Here are the list of parameters that >> I am >> > > > > using to generate base string >> > >> > > > > List<QueryParameter> parameters = new List<QueryParameter>(); >> > > > > parameters.Add(new QueryParameter("oauth_nonce" , >> > > > > "1255174236461304000")); >> > > > > parameters.Add(new QueryParameter("oauth_timestamp", >> > > > > "1255174236")); >> > > > > parameters.Add(new QueryParameter("oauth_signature_method", >> "RSA- >> > > > > SHA1")); >> > > > > parameters.Add(new QueryParameter("oauth_consumer_key", >> > > > > "orkut.com")); >> > > > > parameters.Add(new QueryParameter("oauth_token", "")); >> > > > > parameters.Add(new QueryParameter("opensocial_owner_id", >> > > > > "04260157720044639260")); >> > > > > parameters.Add(new QueryParameter("opensocial_viewer_id", >> > > > > "04260157720044639260")); >> > > > > parameters.Add(new QueryParameter("opensocial_app_id", >> > > > > "07513949224686644859")); >> > > > > parameters.Add(new QueryParameter("opensocial_app_url", " >> > >http://www.knownmarket.com/KMWeb/KnownMarket.xml")); >> > > > > parameters.Add(new >> QueryParameter("xoauth_signature_publickey", >> > > > > "pub.1199819524.-1556113204990931254.cer")); >> > >> > > > > //Commented Out because including also didnt help >> > > > > //parameters.Add(new QueryParameter("opensocial_container", >> > > > > "http://www.orkut.com")); >> > > > > //parameters.Add(new QueryParameter("oauth_body_hash", >> > > > > "HC2N0z5sbRPkI4csJ00ilMlXzes=")); >> > > > > //parameters.Add(new QueryParameter("xoauth_public_key", "pub. >> > > > > 1199819524.-1556113204990931254.cer")); >> > > > > //parameters.Add(new QueryParameter("oauth_version","1.0")); >> > >> > > > > parameters.Sort(new QueryParameterComparer()); >> > >> > > > > string normalizedUrl = "http://www.knownmarket.com/KMWeb/ >> > > > > ListingSvc.asmx"; >> > >> > > > > string normalizedRequestParameters = >> NormalizeRequestParameters >> > > > > (parameters); >> > >> > > > > StringBuilder signatureBase = new StringBuilder(); >> > > > > signatureBase.AppendFormat("{0}&", "POST"); >> > > > > signatureBase.AppendFormat("{0}&", UrlEncode >> > > > > (normalizedUrl)); >> > > > > signatureBase.AppendFormat("{0}", UrlEncode >> > > > > (normalizedRequestParameters)); >> > > > > return signatureBase.ToString(); >> > >> > > > > I tried the C# example provided onhttp:// >> > > wiki.opensocial.org/index.php?title=Validating_Signed_Requests >> > > > > but even that didnt help. >> > >> > > > > Gurus, do let me know if I am missing out anything here? >> > >> > > > > Thanks, >> > > > > -Akash- Hide quoted text - >> > >> > > > - Show quoted text - >> >> >> > --~--~---------~--~----~------------~-------~--~----~ 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 -~----------~----~----~----~------~----~------~--~---

