请问如何在用户购买了代金券后获取用户得到的优惠券ID。 因为购买代金券推送的信息不包含优惠券信息。所以我想到的是购买后通过购买者的手机号去查询其优惠券ID。 使用的是 查询买家优惠码列表API ,但返回的一直是 非法的content. 请问我哪里使用有问题啊?或者说我应该用其他的方式去查询?
String par = '{"status":"VALID" , "mobile":"13880074647",'
+'"fans_id":""}';
HttpRequest Request = new HttpRequest();
String token = 'xxxxxxxxxx';//这里我填写的是真实的token
Request.setEndpoint( 'https://open.youzanyun.com/api/youzan.ump.promocard.buyer.search/3.0.2?access_token='+token ) ;
Request.setMethod( 'POST' ) ;
Request.setBody(Encodingutil.urlEncode(par,'UTF-8') );//Encodingutil.urlEncode(PostBody,'UTF-8') ) ;
Request.setHeader(
'Content-Type'
, 'application/json'
) ;
HttpResponse Response = new Http().send( Request ) ;
Blob b = Response.getBodyAsBlob() ;
|
|
用手机打开
收藏
赞 0
···
回复
|
|
|
|