尝试让我的应用程序在AWS Lightsail上运行以向Google进行身份验证时出现此错误。我已经尝试了其他人在其他地方建议的所有修复程序,也就是说,我没有在凭据中使用我的公共IP地址,我已经尝试使用xip.io,现在我将我的亚马逊地址用作唯一用于授权域,JavaScript Origins和重定向URI。无论如何,我仍然会收到此错误。我在一个论坛上读到Google阻止了xip.io,但我不知道这是最新的还是真实的,并且我尝试使用谷歌搜索未成功。
我现在已经多次更新了client_secrets.json文件。我还更新了我的login.html中的代码。当前看起来像这样:
class AgeScope implements Scope
{
public function apply(Builder $builder, Model $model)
{
return $builder->where('age', '>', 200);
}
}
class User extends Model
{
protected static function boot()
{
parent::boot();
static::addGlobalScope(new AgeScope);
}
}
<!--LOAD PRE-REQUISITES FOR GOOGLE SIGN IN -->
<script src="//ajax.googleapis.com/ajax/libs/jquery/1.12.4/jquery.min.js">
</script>
<script src="//apis.google.com/js/client:platform.js?onload=start" async defer>
</script>
<script>
function start() {
gapi.load('auth2', function() {
auth2 = gapi.auth2.init({
client_id: 'zzz.apps.googleusercontent.com'
});
});
}
我非常感谢任何人提供的任何提示。