2016-11-22 49 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