iT邦幫忙

0

google api

  • 分享至 

  • xImage

請問有人遇過取得使用者進階個資時,
結果直接出現


系統已封鎖這個應用程式
這個應用程式嘗試存取您 Google 帳戶中的機密資訊。為保護您的帳戶,Google 已阻擋這個存取行為。

如果您是開發人員,請向 Google 提出應用程式驗證要求。

這樣還有解嗎?

https://ithelp.ithome.com.tw/upload/images/20221206/20136448wdcDNolcvk.jpg

<?php
$client = new Google_Client();
$client->setApplicationName('登入' . "R");

// 申請 https://console.cloud.google.com/apis/
$client->setAuthConfig('client_secret.apps..com.json');
$client->setClientId('xxxxxx');
$client->setClientSecret('GOCSPX-'); 

$client->setRedirectUri($Api);

$client->addScope("email");
$client->addScope("profile");

$client->addScope(['https://www.googleapis.com/auth/userinfo.email', Google_Service_Oauth2::USERINFO_PROFILE]);

$client->addScope([
    'https://www.googleapis.com/auth/fitness.activity.read',
    'https://www.googleapis.com/auth/fitness.location.read',
]);

圖片
  直播研討會
圖片
{{ item.channelVendor }} {{ item.webinarstarted }} |
{{ formatDate(item.duration) }}
直播中

1 個回答

0

上面其實已經寫的很清楚了。
你需要去提出申請應用程式要求。

基本上跟FB一樣。
GOOGLE那邊會需要你說理由,為何需要這些資料。理由何在。
且也可能會要求你放上隱私權政策,移除個人資料等操作的設計....等等。
才會授權給你取用。
大多數來說,你開發用的GOOGLE帳號也得達到能獲取你的真實資料。
才比較容易授權。

因為進階的個人資料並不能隨隨便便給你取用的。

我要發表回答

立即登入回答