2016-11-22 45 views
0

试图说服该API具有以下要求:试图建立一个水桶越来越对象丢失响应

POST /oss/v2/buckets/ HTTP/1.1 
Host: developer.api.autodesk.com 
Authorization: "Bearer sOla4eICLR6IBcx0892MvPjJ***" 
Content-Type: application/json 
Cache-Control: no-cache 
Postman-Token: 1018dee7-22f1-d20b-4d11-32c4fd41d525 

{ 
    "bucketKey":"energymetrics.bucket1", 
    "policyKey":"transient" 
} 

响应:

{{ 
    "developerMessage": "Object is missing", 
    "userMessage": "", 
    "errorCode": "", 
    "more info": "http://developer.api.autodesk.com/documentation/v1/errors/" 
}} 

试图在这两个邮递员和C#

回答

2

请确保您使用的URL没有斜线

https://developer.api.autodesk.com/oss/v2/buckets 
+0

Doh,就是这样!谢谢! – tap