Người dùng thử nghiệm liên kết với một ứng dụng trên Facebook. Người dùng thử nghiệm được tạo và liên kết bằng cạnh /{app-id}/accounts/test-users
hoặc trong Bảng điều khiển ứng dụng.
Các quyền và trường dành cho thao tác đọc trên nút này tương tự với nút /{user-id}
thông thường.
Bạn có thể đăng lên nút này để cập nhật mật khẩu hoặc tên của người dùng thử nghiệm.
POST /v21.0/{test-user-id} HTTP/1.1
Host: graph.facebook.com
password=newpassword&name=Newname+Smith
/* PHP SDK v5.0.0 */
/* make the API call */
try {
// Returns a `Facebook\FacebookResponse` object
$response = $fb->post(
'/{test-user-id}',
array (
'password' => 'newpassword',
'name' => 'Newname Smith',
),
'{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 */
Bundle params = new Bundle();
params.putString("password", "newpassword");
params.putString("name", "Newname Smith");
/* make the API call */
new GraphRequest(
AccessToken.getCurrentAccessToken(),
"/{test-user-id}",
params,
HttpMethod.POST,
new GraphRequest.Callback() {
public void onCompleted(GraphResponse response) {
/* handle the result */
}
}
).executeAsync();
NSDictionary *params = @{
@"password": @"newpassword",
@"name": @"Newname Smith",
};
/* make the API call */
FBSDKGraphRequest *request = [[FBSDKGraphRequest alloc]
initWithGraphPath:@"/{test-user-id}"
parameters:params
HTTPMethod:@"POST"];
[request startWithCompletionHandler:^(FBSDKGraphRequestConnection *connection,
id result,
NSError *error) {
// Handle the result
}];
Tên | Mô tả | Loại |
---|---|---|
| Tên mới của người dùng thử nghiệm. |
|
| Mật khẩu mới của người dùng thử nghiệm. |
|
Nếu cập nhật thành công, bạn sẽ nhận được giá trị true
. Nếu không, bạn sẽ nhận được thông báo lỗi.
Bạn có thể xóa người dùng thử nghiệm bằng cách thực hiện thao tác xóa trên nút này.
DELETE /v21.0/{test-user-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->delete(
'/{test-user-id}',
array (),
'{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(),
"/{test-user-id}",
null,
HttpMethod.DELETE,
new GraphRequest.Callback() {
public void onCompleted(GraphResponse response) {
/* handle the result */
}
}
).executeAsync();
/* make the API call */
FBSDKGraphRequest *request = [[FBSDKGraphRequest alloc]
initWithGraphPath:@"/{test-user-id}"
parameters:params
HTTPMethod:@"DELETE"];
[request startWithCompletionHandler:^(FBSDKGraphRequestConnection *connection,
id result,
NSError *error) {
// Handle the result
}];
/{app-id}/accounts/test-users
.Không cần phải xóa trường nào.
Nếu xóa thành công, bạn sẽ nhận được giá trị true
. Nếu không, bạn sẽ nhận được thông báo lỗi.
Tên | Mô tả |
---|---|
Bạn bè của người dùng thử nghiệm - bạn có thể dùng cạnh này để kết bạn cho 2 người dùng thử nghiệm. |