我在React-Native应用程序中使用Apollo(使用Graph Cool),redux和Auth0。我试图延迟查询和突变,直到设置标头。
idToken存储在异步存储中,因此是一个承诺。我不能使用redux传递令牌,因为这会产生循环依赖。
当用户第一次登录或令牌已过期时,会在设置标头之前发送查询,这意味着我收到错误Error: GraphQL error: Insufficient Permissions
如何在查找令牌并将其添加到标头之前延迟查询?我一直在寻找三个主要的解决方案:
一些片段:
const token = AsyncStorage.getItem('token');
const networkInterface = createNetworkInterface({ uri:XXXX})
//adds the token in the header
networkInterface.use([{
applyMiddleware(req, next) {
if(!req.options.headers) {
req.options.headers = {}
}
if(token) {
token
.then(myToken => {
req.options.headers.authorization = `Bearer ${myToken}`;
})
.catch(err => console.log(err));
}
next(); // middleware so needs to allow the endpoint functions to run;
},
}]);
// create the apollo client;
const client = new ApolloClient({
networkInterface,
dataIdFromObject: o => o.id
});
和
const store = createStore(
combineReducers({
token: tokenReducer,
profile: profileReducer,
path: pathReducer,
apollo: client.reducer(),
}),
{}, // initial state
compose(
applyMiddleware(thunk, client.middleware(), logger),
)
);
答案 0 :(得分:3)
我不确定这会在没有复制应用程序的情况下运行,主要是因为我没有设置您的结构的应用程序,但是因为您正在呼叫下一次这种竞争条件()在异步链之外。
调用next(),当前它将告诉客户端继续处理请求,即使您的令牌未设置。相反,让我们等待,直到令牌返回并且标头在继续之前设置为止。
networkInterface.use([{
applyMiddleware(req, next) {
if(!req.options.headers) {
req.options.headers = {}
}
AsyncStorage.getItem('token')
.then(myToken => {
req.options.headers.authorization = `Bearer ${myToken}`;
})
.then(next) // call next() after authorization header is set.
.catch(err => console.log(err));
}
}]);