hello, Iam currently implementing an oAuth consumer in PHP. I have a question while building the base string to sign my request (http://oauth.net/core/1.0a#sig_norm_param)
I make an request that contains GET and POST variables i.e. ---------------------------------------- POST /some/api?id=foo HTTP/1.1 Host 127.0.0.1 Authorization: OAuth [parameters ...] Content-Type: application/x-www-form-urlencoded content=wusahh ---------------------------------------- my question is now should I use as request parameters the GET and POST variables or only the POST variables? In other words should I add "id=foo&content=wusahh" or "content=wusahh" to build the base string. The question occurs because I use the oAuth test server at http://term.ie/oauth/example/ to test my consumer ... but the implementation of this server tells me that I have a wrong base string when I use both but when I use only the POST vars it works. As I understand the specification I should use both (GET and POST) but plz correct me whether I understand that false or the implementation is wrong? best regards k42b3 --~--~---------~--~----~------------~-------~--~----~ You received this message because you are subscribed to the Google Groups "OAuth" 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/oauth?hl=en -~----------~----~----~----~------~----~------~--~---
