REAPI/extend/sdk/taobao/top/fileTest.php

26 lines
922 B
PHP
Raw Normal View History

2024-09-29 15:43:18 +08:00
<?php
include "TopSdk.php";
date_default_timezone_set('Asia/Shanghai');
$c = new TopClient;
$c->appkey = '*********';
$c->secretKey = '*******************';
// $req = new TradeVoucherUploadRequest;
// $req->setFileName("example");
// $req->setFileData("@/Users/xt/Downloads/1.jpg");
// $req->setSellerNick("奥利奥官方旗舰店");
// $req->setBuyerNick("101NufynDYcbjf2cFQDd62j8M/mjtyz6RoxQ2OL1c0e/Bc=");
// var_dump($c->execute($req));
$req2 = new TradeVoucherUploadRequest;
$req2->setFileName("example");
$myPic = array(
'type' => 'application/octet-stream',
'content' => file_get_contents('/Users/xt/Downloads/1.jpg')
);
$req2->setFileData($myPic);
$req2->setSellerNick("奥利奥官方旗舰店");
$req2->setBuyerNick("101NufynDYcbjf2cFQDd62j8M/mjtyz6RoxQ2OL1c0e/Bc=");
var_dump($c->execute($req2));
?>