0
magento.i에서 authorized.net의 정기 구독을 만들고 있습니다. 구독을 성공적으로 만들었습니다. 가입을 취소하고 xml을 전달하는 옵션을 추가했으나이를 수락하지 않습니다.HTTP/1.1 405 메서드가 허용되지 않습니다. authorized.net 허용
$loginname="******";
$transactionkey="*******";
$host = "apitest.authorize.net";
$content=
"<?xml version=\"1.0\" encoding=\"utf-8\"?>".
"<ARBCancelSubscriptionRequest xmlns=\"AnetApi/xml/v1/schema/AnetApiSchema.xsd\">".
"<merchantAuthentication>".
"<name>" . $loginname . "</name>".
"<transactionKey>" . $transactionkey . "</transactionKey>".
"</merchantAuthentication>" .
"<subscriptionId>" . 2179811 . "</subscriptionId>".
"</ARBCancelSubscriptionRequest>";
echo $response = send_request_via_curl($host,$path,$content);die;
허용되지 않는 405 방법을 제공하고 있습니다. 도와주세요!
로했다! – rohitnetgains