在观察者中获得保存的贝宝凭证?

时间:2018-09-05 04:10:32

标签: magento paypal magento-1.9

我已经在Magnto 1.9中启用了paypal,现在我想在观察者中调用另一个paypal API,因为我需要在启用paypal时已经保存的paypal用户,密码和签名。

我想使用配置从管理员那里获取这些详细信息。

我尝试使用以下代码,但无法正常工作。

$store = Mage::app()->getStore(Mage::app()->getStore()->getStoreId()); 
$Settings = Mage::getStoreConfig('paypal_payments/payment/required_settings/express',$store);

有可能吗?

1 个答案:

答案 0 :(得分:6)

我已经测试了以下代码。工作正常。

$store = Mage::app()->getStore(Mage::app()->getStore()->getStoreId()); 

$Email = Mage::getStoreConfig('paypal/general/business_paypal/general/business_accountaccount');
$UserName = Mage::getStoreConfig('paypal/wpp/api_username',$store);
$Password = Mage::getStoreConfig('paypal/wpp/api_password',$store);
$Signature = Mage::getStoreConfig('paypal/wpp/api_signature',$store);