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
I am using PHP 7 and laravel framework and CURL on phpoauthlib. The '@file_path' as suggested by etsy has been depreciated. I have tried to use the following
$param['image']= new \CURLFile($image_path, mime_content_type($image_path), 'image.jpg');
I will get the error "rawurlencode() expects parameter 1 to be string, object given" in signature.php. I believe it tries to combine all parameter into single string.
If I am to use the following
$param['image'] = base64_encode(file_get_contents($image_path));
I would get the error from Etsy saying "the request body is too large"
Is there any way I can upload or use curlfile at the moment? Will I be able to upload using steam instead?
Thanks in advance.
The text was updated successfully, but these errors were encountered:
I am using PHP 7 and laravel framework and CURL on phpoauthlib. The '@file_path' as suggested by etsy has been depreciated. I have tried to use the following
$param['image']= new \CURLFile($image_path, mime_content_type($image_path), 'image.jpg');
I will get the error "rawurlencode() expects parameter 1 to be string, object given" in signature.php. I believe it tries to combine all parameter into single string.
If I am to use the following
$param['image'] = base64_encode(file_get_contents($image_path));
I would get the error from Etsy saying "the request body is too large"
Is there any way I can upload or use curlfile at the moment? Will I be able to upload using steam instead?
Thanks in advance.
The text was updated successfully, but these errors were encountered: