我必须弄清楚如何使用 OAuth 2 才能使用 Deviantart api。
我得到了 client_id 和 client_secret 部分
这里他们提供的信息
端点
您需要使用 OAuth 2.0 向我们进行身份验证的唯一信息是您的应用程序的client_id
和client_secret
值,以及下面显示的端点。
OAuth 2.0 草案 10:
https://www.deviantart.com/oauth2/draft10/authorize https://www.deviantart.com/oauth2/draft10/token
OAuth 2.0 草案 15:
https://www.deviantart.com/oauth2/draft15/authorize https://www.deviantart.com/oauth2/draft15/token
安慰剂呼叫
第一个依赖 OAuth 2.0 身份验证的 API 调用是安慰剂调用。在进行可能很长的真正 API 调用(如文件上传)之前检查访问令牌是否仍然有效很有用。您可以使用以下端点之一调用它(必须提供访问令牌):
https://www.deviantart.com/api/draft10/placebo https://www.deviantart.com/api/draft15/placebo
您需要使用与您获得令牌的 OAuth 2.0 草案对应的端点。
它总是返回以下 JSON:{status: "success"}
我在网上搜索并找到了这个很棒的库。
DotNetOpenAuth v4.0.1
http://www.dotnetopenauth.net/
将其添加为参考,但不知道下一步该做什么。即使是一个非常小的例子也对如何使用 OAuth 2 非常有用
using DotNetOpenAuth;
using DotNetOpenAuth.OAuth2;
这里是deviantart提供信息的页面
http://www.deviantart.com/developers/oauth2
好的,到目前为止我得到了什么但没有工作
public static WebServerClient CreateClient() {
var desc = GetAuthServerDescription();
var client = new WebServerClient(desc, clientIdentifier: "myid");
client.ClientCredentialApplicator = ClientCredentialApplicator.PostParameter("mysecret");
return client;
}
public static AuthorizationServerDescription GetAuthServerDescription() {
var authServerDescription = new AuthorizationServerDescription();
authServerDescription.AuthorizationEndpoint = new Uri(@"https://www.deviantart.com/oauth2/draft15/authorize");
authServerDescription.TokenEndpoint = new Uri(@"https://www.deviantart.com/oauth2/draft15/token");
authServerDescription.ProtocolVersion = ProtocolVersion.V20;
return authServerDescription;
}