我在远程服务器上安装了WooCommerce。
在WooCommerce>设置> API,我创建了一个消费者密钥和消费者秘密。
现在我已经创建了一个React本机应用程序,我想从WooCommerce API获取数据并将其显示在应用程序中。
我尝试了Woocommerce-API npm软件包但该软件包与React本机不兼容,我收到以下错误:
https://github.com/facebook/react-native/issues/4968
所以我找到了另一个名为react-native-oauth
的npm包使用此功能时出现以下错误:
Possible Unhandled Promise Rejection (id: 0):
YellowBox.js:68 Possible Unhandled Promise Rejection (id: 1): Provider React App Key not configured Error: Provider React App Key not configured
at createErrorFromErrorData (http://localhost:8081/index.ios.bundle?platform=ios&dev=true&minify=false:7761:11)
at http://localhost:8081/index.ios.bundle?platform=ios&dev=true&minify=false:7712:11
at MessageQueue.__invokeCallback (http://localhost:8081/index.ios.bundle?platform=ios&dev=true&minify=false:7575:10)
at http://localhost:8081/index.ios.bundle?platform=ios&dev=true&minify=false:7437:8
at guard (http://localhost:8081/index.ios.bundle?platform=ios&dev=true&minify=false:7349:1)
at MessageQueue.invokeCallbackAndReturnFlushedQueue (http://localhost:8081/index.ios.bundle?platform=ios&dev=true&minify=false:7436:1)
at onmessage (http://localhost:8081/debuggerWorker.js:39:56)
所以我陷入困境,不知道如何向WooCommerce API提出oauth请求并获取数据。我对它进行了很多研究,但找不到能够理解整个认证过程的效果文档。
如果有人发布此问题的详细解决方案,那将非常有用!
谢谢。