Sample code for 30+ languages & platforms
Rust Requires Chilkat v11.0.0+

eBay -- Upload Bulk Data using FileTransferService

See more eBay Examples

Demonstrates how to upload your data file using the eBay File Transfer API.

Chilkat Rust Downloads

Rust

// This example assumes the Chilkat API to have been previously unlocked.
// See Global Unlock Sample for sample code.

// Use a previously obtained access token.  The token should look something like this:
// "AgAAAA**AQA ..."
let access_token = "EBAY_ACCESS_TOKEN".to_string();

let http = chilkat::Http::new();

let api_call = "uploadFile".to_string();
let file_attachment_uuid = "<urn:uuid:bb47b86a237311e793ae92361f002671>".to_string();
let xml_uuid = "<urn:uuid:bb47b766237311e793ae92361f002671>".to_string();

let req = chilkat::HttpRequest::new();

req.set_http_verb("POST");
req.set_path("/FileTransferService");

let sb_content_type = chilkat::StringBuilder::new();
let _ = sb_content_type.append("multipart/related; type=\"application/xop+xml\"; start=\"XMLUUID\"; start-info=\"text/xml\"");
let replace_count = sb_content_type.replace("XMLUUID", &xml_uuid);
req.set_content_type(&sb_content_type.get_as_string().unwrap_or_default());

req.add_header("X-EBAY-SOA-SERVICE-NAME", "FileTransferService");
req.add_header("X-EBAY-SOA-OPERATION-NAME", &api_call);
req.add_header("X-EBAY-SOA-SECURITY-TOKEN", &access_token);
req.add_header("X-EBAY-SOA-REQUEST-DATA-FORMAT", "XML");
req.add_header("X-EBAY-SOA-RESPONSE-DATA-FORMAT", "XML");
req.add_header("User-Agent", "AnythingYouWant");

let path_to_file_on_disk1 = "qa_data/ebay/uploadFileRequest.xml".to_string();
if req.add_file_for_upload("uploadFileRequest.xml", &path_to_file_on_disk1).is_err() {
    println!("{}", req.last_error_text());
    return;
}

let path_to_file_on_disk2 = "qa_data/ebay/BulkDataExchangeRequests.gz".to_string();
if req.add_file_for_upload("BulkDataExchangeRequests.gz", &path_to_file_on_disk2).is_err() {
    println!("{}", req.last_error_text());
    return;
}

// Add sub-headers for each file in the request.
let _ = req.add_sub_header(0, "Content-Type", "application/xop+xml; charset=UTF-8; type=\"text/xml\"");
let _ = req.add_sub_header(0, "Content-Transfer-Encoding", "binary");
let _ = req.add_sub_header(0, "Content-ID", &xml_uuid);
let _ = req.add_sub_header(1, "Content-Type", "application/octet-stream");
let _ = req.add_sub_header(1, "Content-Transfer-Encoding", "binary");
let _ = req.add_sub_header(1, "Content-ID", &file_attachment_uuid);

let resp = chilkat::HttpResponse::new();
if http.http_s_req("storage.sandbox.ebay.com", 443, true, &req, &resp).is_err() {
    println!("{}", http.last_error_text());
    return;
}

println!("Response status code = {}", resp.status_code());

let xml = chilkat::Xml::new();
let _ = xml.load_xml(&resp.body_str());

if resp.status_code() != 200 {
    println!("{}", xml.get_xml().unwrap_or_default());
    println!("Failed.");
    return;
}

// We still may have a failure.  The XML needs to be checked.
// A failed response might look like this:

// 	<?xml version="1.0" encoding="UTF-8" ?>
// 	<uploadFileResponse xmlns="http://www.ebay.com/marketplace/services">
// 	    <ack>Failure</ack>
// 	    <errorMessage>
// 	        <error>
// 	            <errorId>1</errorId>
// 	            <domain>Marketplace</domain>
// 	            <severity>Error</severity>
// 	            <category>Application</category>
// 	            <message>Task Reference Id is invalid</message>
// 	            <subdomain>FileTransfer</subdomain>
// 	        </error>
// 	    </errorMessage>
// 	    <version>1.1.0</version>
// 	    <timestamp>2017-04-18T01:05:27.475Z</timestamp>
// 	</uploadFileResponse>

// A successful response looks like this:

// 	<?xml version="1.0" encoding="UTF-8" ?>
// 	<uploadFileResponse xmlns="http://www.ebay.com/marketplace/services">
// 	    <ack>Success</ack>
// 	    <version>1.1.0</version>
// 	    <timestamp>2017-04-18T01:22:47.853Z</timestamp>
// 	</uploadFileResponse>

println!("{}", xml.get_xml().unwrap_or_default());

// Get the "ack" to see if it's "Failure" or "Success"
if xml.child_content_matches("ack", "Success", false) {
    println!("Success.");
} else {
    println!("Failure.");
}