gpt4 book ai didi

windows-phone-7 - 使用 RestSharp 对 Trello API 进行身份验证

转载 作者:行者123 更新时间:2023-12-01 01:18:59 25 4
gpt4 key购买 nike

我正在努力弄清楚如何从我的 Windows Phone 7 应用程序中使用 Trello 的 OAuth API 调用。除了 listing of the endpoints 之外,该 API 并未真正记录在案。 .

这是我到目前为止所拥有的:

public void OnAuthenticateClicked(object sender, EventArgs e)
{
const string consumerKey = "mykey";
const string consumerSecret = "mysecret";
const string baseUrl = "https://trello.com/1";

var client = new RestClient(baseUrl)
{
Authenticator = OAuth1Authenticator.ForRequestToken(consumerKey, consumerSecret)
};
var request = new RestRequest("OAuthGetRequestToken", Method.POST);
var response = client.ExecuteAsync(request, HandleResponse);
}

private void HandleResponse(IRestResponse restResponse)
{
var response = restResponse;
Console.Write(response.StatusCode);
}

我收到了 404回应,所以显然有些不对劲。

有什么建议?

最佳答案

不使用 ExecuteAsync似乎使它工作:

RestRequest request = new RestRequest("OAuthGetRequestToken", Method.POST);
IRestResponse response = client.Execute(request);
Console.Write(response.StatusCode);

根据 this post 的说法,“异步场景(SL 和 WP)中尚不支持 oAuth1”。通过约翰希恩。

关于windows-phone-7 - 使用 RestSharp 对 Trello API 进行身份验证,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/10367197/

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