0

ユーザー名とパスワードを使用してcURLで管理パネルにログインし、いくつかのアクションを実行したいと思います。ここ
のようではありません。

4

1 に答える 1

2

これを試して

$APIURL = "http://APIURL:port/API/login/";
$method = "POST";
$http = new Varien_Http_Client(APIURL."?username=".$login['username']."&password=".$login['password']);
$response = $http->request($method);
$body = $response->getBody();

try {
     $verifyUser = json_decode($body);
}
catch (Exception $e) {
    throw Mage::exception('Mage_Core', $e);
}
于 2012-10-17T13:20:19.043 に答える