几个月来,我的 OAuth2 例程一直运行良好。OAuth2 例程创建新令牌,以便我可以执行 API 操作。
突然,一周前,我开始收到以下错误:
Charset [empty string]
ErrorDetail I/O Exception: peer not authenticated
Filecontent Connection Failure
Header [empty string]
Mimetype Unable to determine MIME type of file.
Responseheader
struct [empty]
Statuscode Connection Failure. Status code unavailable.
Text YES
我正在使用 Coldfusion 10,并且几个月来我的测试环境中没有任何更改,因此更改必须来自 PayPal 的结尾。
我正在使用以下 http 调用:
<cfset clientid = "***">
<cfset secret = "***">
<cfhttp method="post" url="https://api.sandbox.paypal.com/v1/oauth2/token" result="result">
<cfhttpparam type="header" name="Content_Type" value="application/json">
<cfhttpparam type="formfield" name="grant_type" value="client_credentials">
<cfhttpparam type="header" name="Authorization" value="Basic #ToBase64(clientid & ":" & secret)#">
</cfhttp>
谁能帮我解决这个问题?