1

goodreads ( http://www.goodreads.com ) 用の Windows 8 アプリを開発しています。http://code.msdn.microsoft.com/windowsapps/Web-Authentication-d0485122/view/Discussionsにある Web 認証ブローカーのサンプルに従っています。oauth トークンと oauth トークン シークレットを正常に取得できました。

しかし、それを送り返して、goodreads からアクセス トークンを取得することはできません。以下のコードに記載されているように、取得した oauth トークンとトークン シークレットを使用して、構築された URL を送信しようとしています。OAuthを使用して Goodreads API から受け取ったoauth トークンを使用して、アクセス トークンを取得しようとしています。

指定されたコードでは、"GetResponse2" 変数は、非同期データ送信メソッドから常に null に設定されます。URLの構造が原因だと思いますが、URLのどこが間違っているのかわかりません。誰かが私を助けてくれることを願っています。

 if (oauth_token != null)                                       
 {

            GoodreadsUrl = "https://www.goodreads.com/oauth/authorize?oauth_token=" + oauth_token;
            System.Uri StartUri = new Uri(GoodreadsUrl);
            System.Uri EndUri = new Uri(GoodreadsCallbackUrl);

            WebAuthenticationResult WebAuthenticationResult =
                await WebAuthenticationBroker.AuthenticateAsync(
                    WebAuthenticationOptions.None,
                    StartUri,EndUri);


            var response = WebAuthenticationResult.ResponseData;

            if (WebAuthenticationResult.ResponseStatus == WebAuthenticationStatus.Success)
            {
                TimeSpan SinceEpoch2 = DateTime.UtcNow - new DateTime(1970, 1, 1);
                Random Rand2 = new Random();
                GoodreadsUrl = "http://www.goodreads.com/oauth/access_token";
                Int32 Nonce2 = Rand2.Next(1000000000);
                //
                // Compute base signature string and sign it.
                //    This is a common operation that is required for all requests even after the token is obtained.
                //    Parameters need to be sorted in alphabetical order
                //    Keys and values should be URL Encoded.
                //
                String SigBaseStringParams2 = "oauth_callback=" + Uri.EscapeDataString(GoodreadsCallbackUrl);
                SigBaseStringParams2 += "&" + "oauth_consumer_key=" + GoodreadsClientId;
                SigBaseStringParams2 += "&" + "oauth_token=" + oauth_token;
                SigBaseStringParams2 += "&" + "oauth_verifier=" + oauth_token_secret;
                SigBaseStringParams2 += "&" + "oauth_nonce=" + Nonce2.ToString();
                SigBaseStringParams2 += "&" + "oauth_signature_method=HMAC-SHA1";
                SigBaseStringParams2 += "&" + "oauth_timestamp=" + Math.Round(SinceEpoch2.TotalSeconds);
                SigBaseStringParams2 += "&" + "oauth_version=1.0";
                String SigBaseString2 = "GET&";
                SigBaseString2 += Uri.EscapeDataString(GoodreadsUrl) + "&" + Uri.EscapeDataString(SigBaseStringParams2);

                IBuffer KeyMaterial2 = CryptographicBuffer.ConvertStringToBinary(GoodreadsClientSecret + "&", BinaryStringEncoding.Utf8);
                MacAlgorithmProvider HmacSha1Provider2 = MacAlgorithmProvider.OpenAlgorithm("HMAC_SHA1");
                CryptographicKey MacKey2 = HmacSha1Provider2.CreateKey(KeyMaterial2);
                IBuffer DataToBeSigned2 = CryptographicBuffer.ConvertStringToBinary(SigBaseString2, BinaryStringEncoding.Utf8);
                IBuffer SignatureBuffer2 = CryptographicEngine.Sign(MacKey2, DataToBeSigned2);
                String Signature2 = CryptographicBuffer.EncodeToBase64String(SignatureBuffer2);
                String DataToPost2 = "OAuth oauth_callback=\"" + Uri.EscapeDataString(GoodreadsCallbackUrl) + "\", oauth_consumer_key=\"" + GoodreadsClientId + "\", oauth_nonce=\"" + Nonce2.ToString() + "\", oauth_signature_method=\"HMAC-SHA1\", oauth_timestamp=\"" + Math.Round(SinceEpoch2.TotalSeconds) + "\", oauth_version=\"1.0\", oauth_signature=\"" + Uri.EscapeDataString(Signature2) + "\"";

                GoodreadsUrl += "?" + SigBaseStringParams2 + "&oauth_signature=" + Uri.EscapeDataString(Signature2);

                String GetResponse2 = await SendDataAsync(GoodreadsUrl);
                // DebugPrint("Received Data: " + GetResponse);

            }
4

1 に答える 1

0

DataToPost2あなたの問題は、変数で何もしないという事実に関連しています。投稿する必要のある重要なデータが含まれていると思いますよね?

String DataToPost2 = "...";
GoodreadsUrl += "...";

// Why construct DataToPost2 if not using it?? 
String GetResponse2 = await SendDataAsync(GoodreadsUrl);
于 2013-03-26T16:55:52.707 に答える