添加后台代理代码
This commit is contained in:
26
codes/agent/game/dlweb/api/third/taobao/fileTest.php
Normal file
26
codes/agent/game/dlweb/api/third/taobao/fileTest.php
Normal file
@@ -0,0 +1,26 @@
|
||||
<?php
|
||||
include "TopSdk.php";
|
||||
date_default_timezone_set('Asia/Shanghai');
|
||||
|
||||
$c = new TopClient;
|
||||
$c->appkey = '12497914';
|
||||
$c->secretKey = '4b0f28396e072d67fae169684613bcd1';
|
||||
// $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));
|
||||
?>
|
||||
Reference in New Issue
Block a user