1

我编写了一些简单的代码,用于使用我的 Twitter 开发人员密钥和密码从公共时间线读取推文。这样我就可以在用户自己的网站上显示用户的最新推文。代码如下。

我现在希望在 Google 的 Blogger 上对他们的博客做类似的事情。我曾假设有一种方法可以使用我的 Google API 密钥和秘密来读取博客的公共内容,而无需用户进行身份验证。我只需要博客标题和日期,这样我就可以链接到 Blogger 网站。但是我花了 24 小时在互联网上搜索,找不到任何仅使用密钥和秘密获取访问令牌的示例。

使用Google API SDK,我已经获得了下面的代码,但是在不让用户进行身份验证的情况下找不到获取访问令牌的方法。任何建议表示赞赏 - 感觉我的头撞墙了!很高兴采取任何方法 - 我只想在我正在构建的网站上获得一些 Blogger 内容......

使用 Twitter 进行身份验证

        var oAuthConsumerKey = _key;
        var oAuthConsumerSecret = _secret;
        var oAuthUrl = "https://api.twitter.com/oauth2/token";

        // Do the Authenticate
        var authHeaderFormat = "Basic {0}";

        var authHeader = string.Format(authHeaderFormat,
             Convert.ToBase64String(Encoding.UTF8.GetBytes(Uri.EscapeDataString(oAuthConsumerKey) + ":" +
                    Uri.EscapeDataString((oAuthConsumerSecret)))
                    ));

        var postBody = "grant_type=client_credentials";

        HttpWebRequest authRequest = (HttpWebRequest)WebRequest.Create(oAuthUrl);
        authRequest.Headers.Add("Authorization", authHeader);
        authRequest.Method = "POST";
        authRequest.ContentType = "application/x-www-form-urlencoded;charset=UTF-8";
        authRequest.AutomaticDecompression = DecompressionMethods.GZip | DecompressionMethods.Deflate;

        using (Stream stream = authRequest.GetRequestStream())
        {
            byte[] content = ASCIIEncoding.ASCII.GetBytes(postBody);
            stream.Write(content, 0, content.Length);
        }

        authRequest.Headers.Add("Accept-Encoding", "gzip");

        WebResponse authResponse = authRequest.GetResponse();

        // deserialize into an object
        string objectText;
        using (authResponse)
        {
            using (var reader = new StreamReader(authResponse.GetResponseStream())) 
            {
                objectText = reader.ReadToEnd();
            }
        }
        // objectText is JSON and contains access_token

使用 Blogger 进行身份验证??

    private bloggerTest()
    {
        // Register the authenticator.
        var provider = new NativeApplicationClient(GoogleAuthenticationServer.Description)
        {
            ClientIdentifier = _key,
            ClientSecret = _secret
        };
        var auth = new OAuth2Authenticator<NativeApplicationClient>(provider, GetAuthorization);

        // Create the service.

        var service = new BloggerService(new BaseClientService.Initializer()
        {
            Authenticator = auth
        });

        var result = service.Posts.List(_blogID).Fetch();
    }

    private IAuthorizationState GetAuthorization(NativeApplicationClient arg)
    {
        var state = new AuthorizationState(new[] { BloggerService.Scopes.BloggerReadonly.GetStringValue() });
        // I am stuck here!
    }
4

1 回答 1

1

要访问公共提要,它比您所做的要简单得多。.Net 框架中内置了许多用于处理 RSS 提要的类,您可以从SyndicationFeed开始。获取提要项目(博客文章)非常简单:

XDocument feed = XDocument.Load(rssUrl);   //rssUrl is the URL to the rss page that (most) blogs publish
SyndicationFeed sf = SyndicationFeed.Load(feed.CreateReader());
foreach (SyndicationItem si in sf.Items)
{
    ..you've now got your feed item...
}

请注意,这将为您提供提要项目,但不会为您提供它们出现的完整网页。(尽管您将获得一个 URL)。

于 2013-06-17T11:51:16.793 回答