我使用Nemiro.OAuth类库在C#中集成Dropbox API。 假设我在进行类似 -
的API调用时出错 try
{
RequestResult strReq = OAuthUtility.Post
(
"https://api.dropboxapi.com/1/fileops/move",
new HttpParameterCollection
{
{"access_token", "AccessToken"},
{"root", "auto"},
{"from_path", Path.Combine("Path", Name)},
{"to_path", (Path.Combine("Path", MovePath) + Name)}
}
);
if (strReq.StatusCode == 200)
{
}
else
{
}
}
catch ()
{}
如何跟踪此请求的确切错误? 如果有任何想法请分享。
答案 0 :(得分:0)
应该使用RequestException。