[twitter-dev] Re: Incorrect signature with oAuth

2010-07-18 Thread CeBeans
Hi Carlos: It works!!! Thanks for the tips. I set the header to the one one the GoogleCode page. I also removed the spaces in the header. I was getting the same signature as the GoogleGode page (Im using pure C++ here so I have a set of libs for SHA/Base64) so there was some concern. While C++

[twitter-dev] Re: Incorrect signature with oAuth

2010-07-17 Thread Carlos
Don't know if it matters but you are adding a space after each comma in the Authorization Header. Also check your signature generation method using the following: http://oauth.googlecode.com/svn/code/javascript/example/signature.html and see if you are getting the same signature values. On Jul 17

[twitter-dev] Re: Incorrect signature with oAuth

2010-07-17 Thread CeBeans
Hi Carlos: Thanks for the sniplet. I just converted my source to encode when *building* the parameter string and encode again when *adding* it. I tried on my proper app token codes and still signature error. This is with my base looks like now. NOTE: I changed the C++ source back to the older t

[twitter-dev] Re: Incorrect signature with oAuth

2010-07-17 Thread Carlos
Are you doing this in PseudoCode? base = "method&URLEncode(endpoint)&URLEncode(URLParameterString)" where URLParameterString = "URLEncode(name)=URLEncode(value)&URLEncode(name)=URLEncode(value)..." On Jul 17, 11:01 am, CeBeans wrote: > Im developing a DLL in eVC++3.0 (native C++) that uses the