Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我在我的反应本机应用程序中使用 Google 日历 API,并且每次刷新令牌都会在一段时间后过期。所以我怎样才能设法更新应用程序中的令牌。
创建一个从您的 API 提供程序获取数据的函数。然后在该函数中将您的请求包装在 try-catch 块中。如果令牌无效,则它会去捕获块。在 catch 块中,您可以检查请求的状态。您的 API 提供者对未经授权的请求有一个特定的状态代码。检查它是否等于您的请求状态,然后更新您的令牌并再次递归调用您的函数。