使用disqus api创建新论坛(https://disqus.com/api/docs/forums/create/)。
我有acces_token 和允许读,写,管理论坛。 在设置域中,我有localhost
我的代码如下:
var arguments = new Dictionary<string, string>
{
{"access_token", AccessToken },
{"api_key", ApiKey },
{"api_secret", SecretApiKey },
{"short_name", domain },
{"name", domain },
{"website", "http://disqus.com" }
};
和带有json参数的http帖子。对于http post我使用Flurl
using (var response = await Domain.PostJsonAsync(values))
{
if (response.IsSuccessStatusCode)
{
}
}
但反应是禁止的。
你能推荐一些东西,还是帮忙?
由于 托马斯