/{payment-id}
在应用中使用 Facebook 支付进行的付款的详细信息。
GET /v21.0/{payment-id} HTTP/1.1
Host: graph.facebook.com
/* PHP SDK v5.0.0 */
/* make the API call */
try {
// Returns a `Facebook\FacebookResponse` object
$response = $fb->get(
'/{payment-id}',
'{access-token}'
);
} catch(Facebook\Exceptions\FacebookResponseException $e) {
echo 'Graph returned an error: ' . $e->getMessage();
exit;
} catch(Facebook\Exceptions\FacebookSDKException $e) {
echo 'Facebook SDK returned an error: ' . $e->getMessage();
exit;
}
$graphNode = $response->getGraphNode();
/* handle the result */
/* make the API call */
new GraphRequest(
AccessToken.getCurrentAccessToken(),
"/{payment-id}",
null,
HttpMethod.GET,
new GraphRequest.Callback() {
public void onCompleted(GraphResponse response) {
/* handle the result */
}
}
).executeAsync();
/* make the API call */
FBSDKGraphRequest *request = [[FBSDKGraphRequest alloc]
initWithGraphPath:@"/{payment-id}"
parameters:params
HTTPMethod:@"GET"];
[request startWithCompletionHandler:^(FBSDKGraphRequestConnection *connection,
id result,
NSError *error) {
// Handle the result
}];
名称 | 描述 | 类型 |
---|---|---|
| 交易号码 |
|
| 消费者的名字和姓氏以及其用户 | |
| 由应用创建并传递到 JS 函数的唯一可选标识符(不得超过 255 个字符) |
|
| 与此支付相关的应用 | |
| 此支付中发生的各操作类型的清单。 | object[] |
| 与支付相关的商品。 | object[] |
| 买家的 ISO 国家/地区代码(用于计税)。 |
|
| tax 参数指明一笔款项是否应纳税(增值税或销售税);如果是,应如何缴纳。此参数可能表示为以下值: |
|
| 由 Facebook 确定的此交易收税国家/地区,以 2 位字母的 ISO 3166-1 国家/地区代码表示。注意:本字段仅供您参考,不得用于任何重新计算或对账用途。如果 |
|
| 支付的最初创建时间。 |
|
| 用于计算进账金额的汇率,以美元汇付。 |
|
| 包含与异议有关的信息,包括消费者在提出异议时提供的 |
|
| 会在应用面板中列出的支付测试员支付时显示的可选参数。这表示尚未向消费者的支付工具收费的交易 |
|
您可以使用 Facebook 支付来创建支付。
您无法使用此 API 来删除支付。
您无法使用此连线来更新支付。