gpt4 book ai didi

c# - Aweber C# Api 未授权 - AccessToken key 无效

转载 作者:太空宇宙 更新时间:2023-11-03 16:13:25 26 4
gpt4 key购买 nike

我在使用 Aweber C# api 时遇到问题:http://aweber.codeplex.com/

我从以下代码中收到未经授权的响应。我想知道是否有人可以帮我看看我错过了什么?

String consumerKey = "####";
String consumerSecret = "####";

API api = new API(consumerKey, consumerSecret);

api.OAuthToken = "####";
api.OAuthTokenSecret = "####";
api.OAuthVerifier = "##";

Aweber.Entity.Account account = api.getAccount();

我假设我遗漏了一些重要的东西,但我不知道是什么。

预先感谢您的帮助。

D.

最佳答案

需要在api.getAccount()之前添加如下代码;

        // Set callback url (if not set will default to this page)
api.CallbackUrl = "http://" + Request.Url.Host + ":" + Request.Url.Port + "/Authorize.aspx";

// Get request token
api.get_request_token();
// Save the token and secret in session
HttpContext.Current.Session.Add("oauth_token", api.OAuthToken);
HttpContext.Current.Session.Add("oauth_token_secret", api.OAuthTokenSecret);

// Will redirect user to the Aweber authorize page
api.authorize();

关于c# - Aweber C# Api 未授权 - AccessToken key 无效,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/16672808/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com