Trouble making OAuth signed requests

Posted by behrk2 on Stack Overflow See other posts from Stack Overflow or by behrk2
Published on 2010-03-14T20:01:53Z Indexed on 2010/03/14 20:05 UTC
Read the original article Hit count: 363

Filed under:
|
|
|
|

Hello,

I am able to successfully make non-authenticated and protected calls to the Netflix API. I am having a little trouble making signed requests to the catalog, however. Using the OAuth Test page, it is clear to me that my Base String is correct. My request URL is also correct, except for the oauth_signature. The oauth_signature is the only thing that differs.

If I understand correctly, the only difference between a protected call and a signed call is that there are no tokens involved, and that I am appending on call parameters (such as term).

So, I am using the exact same code that I use for my protected calls that I am for my signed calls, except my signature key ONLY contains my shared secret (with an ampersand sign on the end of it). It does not use the access token.

Am I missing something here? Where else can I be going wrong?

Thanks!

© Stack Overflow or respective owner

Related posts about java

Related posts about oauth