Skip to content

a little helper to upload images in parallel to ebays EPS (eBay Picture Services)

License

Notifications You must be signed in to change notification settings

michabbb/php-ebay-upload-images

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

24 Commits
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

php-ebay-upload-images

usage

$images[] = file_get_contents('/tmp/img1.png');
$images[] = file_get_contents('/tmp/img2.png');
//$images[] = 'this should not work'; <-- test this so see how things fail

$EbayUploadImages = new upload_images([
										  'app-name'   => 'xxxxxxxx',
										  'cert-name'  => 'xxxxxxxx',
										  'dev-name'   => 'xxxxxxxx',
										  'siteid'     => 77,
										  'auth-token' => 'xxxxxxxx'
									  ]);
$responses        = $EbayUploadImages->upload($images);
d($responses);

#f03c15 notice: siteid needs to be numbers, if you use letters you might get very strange SSL errors!

what you (should) get

state should cover the result of all uploads, if one failed, it will show you FALSE with an array key error.

some more config keys you can use:

  • concurrency (number of parallel uploads)
  • comp-level (X-EBAY-API-COMPATIBILITY-LEVEL)
  • ExtensionInDays (see ebay docu)

You need help with the Ebay API?

hire me: info@macropage.de

Follow me

Follow me

Follow me

About

a little helper to upload images in parallel to ebays EPS (eBay Picture Services)

Topics

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages