世博安全存储。身份验证后无法保存用户标识和令牌

Posted

技术标签:

【中文标题】世博安全存储。身份验证后无法保存用户标识和令牌【英文标题】:Expo Securestore. Can't save userid and token after auth 【发布时间】:2021-12-08 04:30:59 【问题描述】:

我正在尝试将用户 ID 和令牌保存在安全存储中。在下一个屏幕上,我可以从 Securestore 获取令牌,但我看不到用户 ID

  const doUserLogIn = async() => 
    try 
      const response = await fetch('http://someurl-dev.de/api/login/?email='+email+'&password='+password, 
        method: 'POST',
        headers: 
          Accept: 'application/json',
          'Content-Type': 'application/json'
        
      );
      const json = await response.json();
      SecureStore.setItemAsync('userid', json.userId);
      SecureStore.setItemAsync('token', json.token);
     catch (e) 
      alert('Error1:'+e);
     finally 
      try
        navigation.navigate('Schichten');
       catch(e) alert('Error2:'+e); 
    
  

这是api调用返回的json

"userId":9,"token":"957a230f3eb6e63c47f1d7a0805fe31df6d2ced7","vorname":"Ankit","nachname":"Vij"

【问题讨论】:

【参考方案1】:

您不是在等待异步函数setItemAsync。您应该尝试以下方法:

await SecureStore.setItemAsync('userid', json.userId);
await SecureStore.setItemAsync('token', json.token);

此外,您可以尝试记录json 变量的值,以确保它确实包含userIdtoken 属性。

【讨论】:

以上是关于世博安全存储。身份验证后无法保存用户标识和令牌的主要内容,如果未能解决你的问题,请参考以下文章

Symfony 2.1.7 - 用户通过身份验证后更新安全令牌设置特定角色

Node Express - 身份验证令牌的存储和检索

使用 ASP.NET 标识和 JWT 令牌的 Azure 函数身份验证

使用访问令牌和刷新令牌保持身份验证

使用jwt身份验证保护react应用程序

在web api身份验证之后将令牌存储在浏览器本地存储中是否安全