用于客户登录会话的Magento API

时间:2017-01-09 06:07:00

标签: php magento session

我在Google& StackOverflow但仍未获得客户从另一台服务器登录以创建会话的代码或建议。

我使用了这段代码,但它无效:

$session = Mage::getSingleton( 'customer/session' );
Mage::app()->getStore()->setWebsiteId(1);

try {
    $session->login( $email, $password );
    $customer = $session->getCustomer();

    return json_encode(array('status' => 'OK', 'userData' => $this->info($customer->getId())));
}
catch( Exception $e ) {
    return json_encode(array('status' => 'error', 'message' => $e->getMessage()));
}

0 个答案:

没有答案