我有一个将Google auth与Firebase和React Native结合使用的应用程序。我可以使用Google身份验证通过ConnectyCube进行用户管理和会话创建吗?
ConnectyCube文档描述了Firebase account and project registration
,但没有解释它与ConnectyCube API的关系。
还在ConnectyCube文档中,它以Create session with User authorization
的形式提供了Possible values: facebook, twitter, firebase_phone
参数和提供程序的详细信息,但没有提供google。任何帮助表示赞赏。
答案 0 :(得分:0)
由于您已经使用Firebase设置了身份验证系统,因此可能不需要使用ConnectyCube身份验证模块来管理密码和用户。
至少就我而言,我们不需要该功能,但仍然必须登录ConnectyCube才能使用其服务。
用户登录后,我们可以订阅其状态并检索用户对象:
async function onAuthStateChanged(user) {
// we do different operations here
await connectyCube.configure(user);
}
useEffect(() => {
const subscriber = auth().onAuthStateChanged(onAuthStateChanged);
return subscriber; // unsubscribe on unmount
}, []);
在ConnectyCube.js中:
configure = async user => {
/*
Here you can:
Do session login
check for the active session
Format the user
Try Catch different scenarios
Sign up a user
Check if a user exists
*/
ConnectyCube.users
.signup(user)
.then(user => {
console.log('[ConnectyCube.users signup]', user);
})
.catch(error => {
console.log(`%c[ConnectyCube.users signup] ${error}`, 'color: red');
});
};
希望它能提供一些想法