Hab da mal ein Problem'che. Ich möchte gerne die csv Dateien bei Ebay hochladen. Hab dazu unter Ebay auch was gefunden, kann da aber überhaupt nichts anfangen. Vermutlich mit SendNetworkString oder HTTPRequest absolut keine Ahnung von der Materie. Vielleicht kann mir da einer helfen
POST /path/to/upload/script HTTP/1.0
Connection: Keep-Alive
User-Agent: My Client App v1.0
Host:
https://bulksell.ebay.com/ws/eBayISAPI. ... angeUpload
Content-type: multipart/form-data;
boundary=THIS_STRING_SEPARATES
Content-Length: 256
--THIS_STRING_SEPARATES
Content-Disposition: form-data; name="token"
12345678987654321
--THIS_STRING_SEPARATES
Content-Disposition: form-data; name="file";
filename="listings.csv"
Content-Type: text/csv
... contents of listings.csv ...
--THIS_STRING_SEPARATES
wie kann man das umsetzen?
