- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我正在实现 facebook 数据删除回调,但我真的迷路了,我无法继续 JSON
facebook 期待的响应。
{ url: '<url>', confirmation_code: '<code>' }
那是我迷路和卡住的部分。我的问题是
到目前为止,这是我在 Controller 上所做的。
<?php
namespace App\Http\Controllers\User\Auth\Socialite;
use App\Models\User;
use Illuminate\Http\Request;
class FacebookSocialLoginController extends SocialLoginFactory
{
public function provider(): string
{
return 'facebook';
}
public function dataDeletionCallback(Request $request)
{
$signed_request = $request->get('signed_request');
$data = $this->parse_signed_request($signed_request);
$user_id = $data['user_id'];
// here will delete the user base on the user_id from facebook
User::where([
['provider' => 'facebook'],
['provider_id' => $user_id]
])->forceDelete();
// here will check if the user is deleted
$isDeleted = User::withTrashed()->where([
['provider' => 'facebook'],
['provider_id' => $user_id]
])->find();
if ($isDeleted ===null) {
return response()->json([
'url' => '', // <------ i dont know what to put on this or what should it do
'code' => '', // <------ i dont know what is the logic of this code
]);
}
return response()->json([
'message' => 'operation not successful'
], 500);
}
private function parse_signed_request($signed_request) {
list($encoded_sig, $payload) = explode('.', $signed_request, 2);
$secret = config('service.facebook.client_secret'); // Use your app secret here
// decode the data
$sig = $this->base64_url_decode($encoded_sig);
$data = json_decode($this->base64_url_decode($payload), true);
// confirm the signature
$expected_sig = hash_hmac('sha256', $payload, $secret, $raw = true);
if ($sig !== $expected_sig) {
error_log('Bad Signed JSON signature!');
return null;
}
return $data;
}
private function base64_url_decode($input) {
return base64_decode(strtr($input, '-_', '+/'));
}
}
最佳答案
- what is the URL should do or show.
这个 URL 的目的,正如文档所说的那样 - 为用户提供一种方法来检查他们的删除请求的状态。
并非所有应用都能在用户请求时立即删除所有个人用户数据。
有些人可能出于法律原因需要保留一部分数据;其他人可能只是需要一些额外的处理时间,因为该过程无法以完全自动化的方式处理,并且需要人工参与。
因此,为响应用户的请求,向用户提供了此状态检查 URL,以便他们可以在明天、两周或六个月后访问该 URL,并检查其删除请求的状态 - 你能做到吗?现在删除所有数据,是否还需要一些时间,是否有一些数据由于法律原因不会被删除等。
- what is the logic between the confirmation code
只是访问相同信息的不同方式。也许通过您提供的 URL 检查状态对用户来说是不够的,因此他们可能想调用或发送电子邮件给您的支持人员,以询问其删除请求的状态。然后他们可以为您的支持人员提供该代码,他们可以通过该代码查找必要的信息。
如果您检查文档中的代码示例,它们在状态检查 URL 中使用相同的代码值,并作为确认代码。因此,您可以对两者使用相同的代码。
创建它,将其存储在您的数据库中,并将特定用户的删除请求的状态与该代码相关联。
关于php - 使用社交名流在 laravel 中实现 facebook 数据删除回调,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/66395879/
尝试让社交名流使用我的应用程序。 Facebook 返回参数 app_id is required 错误。 路线: Route::get('/login/facebook', '\CommendMe\
我是一名优秀的程序员,十分优秀!