Firebase是否支持使用oAuth为提供者Angellist进行身份验证?
我尝试了以下(假设我有正确的access_token):
ref.authWithOAuthToken("angellist", access_token, function(error, AuthData) {
if (error) {
console.log("Login Failed!", error);
} else {
console.log("Authenticated successfully with payload:", AuthData);
}
});
但它又回来了:
Error: Invalid authentication provider specified
如何防止这种情况?