正如问题中提到的,我尝试使用特定的身份验证凭据调用此Adyen API并传递JSON对象,使用Curl是这样完成的。
curl https://pal-test.adyen.com/pal/servlet/Recurring/v68/disable \
-U "ws@Company.login":"Pa$$W0rd" \
-H "Content-Type: application/json" \
-d '{
"merchantAccount": "exampleMerchantAccount",
"shopperReference": "exampleShopperReference"
}'
我尝试使用HTTPClient Request来完成此操作:
$params = array(
"merchantAccount" => "exampleMerchantAccount",
"shopperReference" => "exampleShopperReference"
);
$result = $this->client->request('POST', 'https://pal-test.adyen.com/pal/servlet/Recurring/v68/disable', $params);
但我还是不明白如何通过基本的身份验证凭证。
请帮忙。
1条答案
按热度按时间wf82jlnq1#
如文档中所述,将其添加到参数中,如下所示: