我正在尝试在 R 中的 Windows 7 中复制以下 apigee oauth 调用。我尝试了 Roauth、(python)oauth-proxy 和 RCurl(可能是最好的方法,但我无法弄清楚)等。这是运行良好的 apigee 调用:
GET /places/geocode?geo=%7B%22%24point%22%3A%5B34.06021%2C-118.41828%5D%7D HTTP/1.1
Authorization:
OAuth oauth_consumer_key="myKey",
oauth_signature_method="HMAC-SHA1",
oauth_timestamp="1372529150",
oauth_nonce="1274556232",
oauth_version="1.0",
oauth_signature="someSignature"
Host: api.v3.factual.com
X-Target-URI: http://api.v3.factual.com
Connection: Keep-Alive
我需要一个保持打开状态的 oauth 连接,以便我可以在 R 中调用 API。任何帮助都将不胜感激,特别是上述字段如何读入解决方案。提前感谢您的宝贵时间。