-1

Googleアカウントに接続して、ブロガーのホームページのHTMLコードを取得しようとしています。接続を維持するためにCookieが必要であることがわかりましたが、その方法がわかりません。

ユーザー名とパスの投稿アドレスは「https://www.google.com/accounts/ClientLogin」です。

前もって感謝します!

4

2 に答える 2

1

これを試して

private bool Authorize(out string authCode)
{
    bool result = false;
    authCode = "";

    string queryString = String.Format("https://www.google.com/accounts/ClientLogin?accountType=HOSTED_OR_GOOGLE&Email={0}&Passwd={1}&service=cloudprint&source={2}", UserName, Password, Source);
    HttpWebRequest request = (HttpWebRequest)WebRequest.Create(queryString);

    HttpWebResponse response = (HttpWebResponse)request.GetResponse();
    string responseContent = new StreamReader(response.GetResponseStream()).ReadToEnd();

    string[] split = responseContent.Split('\n');
    foreach (string s in split)
    {
        string[] nvsplit = s.Split('=');
        if (nvsplit.Length == 2)
        {
            if (nvsplit[0] == "Auth")
            {
                authCode = nvsplit[1];
                result = true;
            }
        }
    }

    return result;
}

`

于 2011-06-03T10:57:34.093 に答える
0

Google Code Playgroundには、実行方法の良い例がいくつかあります。 ブログから投稿を取得する方法の例を次に示します。それが役に立てば幸い。

于 2011-06-03T10:49:58.687 に答える