/{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 國碼/區碼(稅務用途)。 |
|
| 此稅項參數會指定付款是否必須含稅(增值稅或銷售稅),以及稅項的付款方式(如果必須含稅)。此參數可能會採用以下值: |
|
| 由 Facebook 判定根據哪個國家/地區來計算此筆交易稅項,此參數將以 ISO 3166-1 alpha-2 國碼/區碼顯示。請注意:此欄位僅供參考,不可作為重新計算或收支對帳之用。如果 |
|
| 付款的最初建立時間。 |
|
| 用於計算支付款項(以美元計)的匯率。 |
|
| 包含與爭議相關的資訊,例如消費者在提出爭議時提供的 |
|
| 選用參數,在付款由應用程式管理中心所列的付款測試者進行時顯示。此參數代表尚未透過消費者付款方式收費的交易 |
|
您可以使用 Facebook 付款建立付款。
您無法使用此 API 刪除付款。
您無法使用此關係連線更新付款。