我收到此错误:
“对于 RSASSA-PKCS1-v1_5 签名方法,您必须使用带有附加 AssymetricAlgorithm “key”参数的构造函数”
当我尝试使用我的 IOAuthSession 对象发出请求时。
我假设它指的是 IOAuthSession 构造函数,但 IOAuthSession 在构造函数中没有“key”参数。
这是我的代码:
IOAuthSession consumerSession = new OAuthSession(consumerContext, requestTokenUrl, UserAuthoriseUrl, accessTokenUrl);
IConsumerRequest getOrganisationRequest = consumerSession
.Request()
.ForMethod("GET")
.ForUri(new Uri("https://api.xero.com/api.xro/2.0/Organisation"))
.SignWithToken(accessToken);
任何帮助将不胜感激。