You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
It was working fine before but for last few days it starts throw this error :
"InvalidParameterValue
Invalid query string provided - Keys may not contain <"
The text was updated successfully, but these errors were encountered:
I found the solution
The issue is Content Type, Using this package, it send "Content-Type" as "text/xml"
But Amazon update API end point and now we have to send 'Content-Type: application/xml"'
So please update in AmazonFeed.php file
this function
protected function genHeader()
{
$return[0] = "Content-MD5:" . $this->feedMD5;
return $return;
}
TO
protected function genHeader()
{
$return[0] = "Content-MD5:" . $this->feedMD5;
$return[1] = "Content-Type: application/xml";
return $return;
}
branall1
pushed a commit
to branall1/amazon-mws-laravel
that referenced
this issue
May 1, 2019
It was working fine before but for last few days it starts throw this error :
"InvalidParameterValue
Invalid query string provided - Keys may not contain <"
The text was updated successfully, but these errors were encountered: