我有一个将curl发送到另一个控制器的控制器,但出现错误302。
这是我在magento2中的卷发
try{
$_str_base_url = $urlInterface->getUrl('magento_ebayautopurchase/EbayApiScanningData/EbayData');
//if the method is get
$this->_curl->get($_str_base_url);
//response will contain the output in form of JSON string
$response = $this->_curl->getBody();
var_dump('tested');
var_dump($response);
}
catch (\Exception $e) {
var_dump('catch');
}