我正尝试在我的项目中使用
的react-native-app-authnpm install react-native-app-auth --save react-native链接react-native-app-auth
我无法通过create-react-native-app进行这项工作。我阅读了react-native文档,发现提到我需要弹出该应用才能使链接正常工作,但是在react-native-app-auth中,没有任何提及可以正常工作。我是新来的。请帮忙。这是生成错误的代码实现的片段
const config = {
issuer: "http://localhost:3000/api/oauth/authorize",
clientId: "Chat",
additionalParameters: { childClientId: "Devil", response_type: "code" },
redirectUrl: "ChatApp.oauth://redirect",
scopes: ["ChatApp"],
};
const result= authorize(config);
我正在尝试进行android设置。无需退出应用