hello all,
i'm new in this forum, so sorry if i posting in the wrong forum.
i'm trying to develop small app that using delicious API via oauth. i'm using the same code for twitter oauth, with minor modifications. the oauth process going smooth and i can get couple of variables from yahoo servers, ie:
CODE
[access_token] => Array
(
[oauth_token] => {hidden}
[oauth_token_secret] => {hidden}
[oauth_expires_in] => 3600
[oauth_session_handle] => {hidden}
[oauth_authorization_expires_in] => 866830289
[xoauth_yahoo_guid] => {hidden}
)
problem comes up when i'm trying to access delicious API
https://api.del.icio.us/v2/posts/updatei got this error:
CODE
<yahoo:error xmlns:yahoo='http://yahooapis.com/v1/base.rng'
xml:lang='en-US'>
<yahoo:description>Please provide valid credentials. OAuth oauth_problem="parameter_rejected: oauth_consumer_key", realm="yahooapis.com"</yahoo:description>
</yahoo:error>
<!-- fe12.api.del.ac4.yahoo.net uncompressed/chunked Sun Aug 1 02:07:51 PDT 2010 --
done so far:
- http://developer.yahoo.net/forum/index.php?showtopic=6277 appID: ASLvOt54, its OAuth app.
- http://developer.yahoo.net/forum/?showtopic=3065&cookiecheckonly=1 << no answer
- Reorder the Authorization http header vars as http://delicious.com/help/oauthapi#7 with NO luck
is there any for this problem?