Delicious 有两组 API 身份验证,一组使用用户名和密码,另一组使用 oAuth,这一事实告诉了我一些我将要经历的事情,我没有错。不幸的是,我现在必须同时处理这两个 API,并且未能成功通过 API v2(Yahoo oAuth)的第一个障碍。
这是一个代码片段(我在此示例中使用 OpenSocial http://code.google.com/p/opensocial-net-client)
public static string GetRequestToken(string callbackUrl)
{
string normaluri;
string normaluriparam;
OAuthBase oAuth = new OAuthBase();
string nonce = oAuth.GenerateNonce();
string timeStamp = oAuth.GenerateTimeStamp();
string sig = oAuth.GenerateSignature(new Uri(TOKEN_URL), ConfigurationManager.AppSettings[CONSUMER_KEY],
ConfigurationManager.AppSettings[SECRET_KEY],
string.Empty,
string.Empty,
"GET",
timeStamp,
nonce,
OAuthBase.SignatureTypes.HMACSHA1,
out normaluri,
out normaluriparam);
sig = HttpUtility.UrlEncode(sig);
string result =
HttpClient.Get(TOKEN_URL, new
{
oauth_nonce = nonce,
oauth_timestamp = timeStamp,
oauth_consumer_key = ConfigurationManager.AppSettings[CONSUMER_KEY],
oauth_signature_method = "HMAC-SHA1",
oauth_signature = sig,
oauth_version = "1.0",
oauth_callback = callbackUrl
});
return result;
}
如果我按照http://delicious.com/help/oauthapi上的说明将其留给 OpenSocial似乎没关系,我从服务器收到“401 Unauthorized”,没有更多信息。
我可以看到很多人有同样的问题,但找不到任何解决方案。