iOS アプリケーションで Vimeo API を使用しています。しかし、数日前から機能しなくなり、動画をアップロードしようとするとエラーが発生します。
以下は方法です、私はリクエストを作成しています
NSURL *uploadURL = [NSURL URLWithString:endpoint];
OAMutableURLRequest *req = [[OAMutableURLRequest alloc] initWithURL:uploadURL consumer:self._oaconsumer token:self._authToken realm:nil signatureProvider:self._sigProv];
[req setTimeoutInterval:60.0];
[req setHTTPMethod:@"PUT"];
[req setValue:[NSString stringWithFormat:@"%ld",(unsigned long)self._byteSizeOfVideo] forHTTPHeaderField:@"Content-Length"];
[req setValue:@"video/quicktime" forHTTPHeaderField:@"Content-Type"];
そして、私が受け取った次のエラーメッセージ、
Printing description of error:
Error Domain=com.alamofire.error.serialization.response Code=-1011 "Request failed: bad request (400)" UserInfo=0x1705bc80 {com.alamofire.serialization.response.error.response=<NSHTTPURLResponse: 0x15d1ff60> { URL: http://1511655313.cloud.vimeo.com/upload_multi?ticket_id=75225c91f65b14315902b8bee5fbbc44&signature=6126962b362c9c0777bce88556211572 } { status code: 400, headers {
"Access-Control-Allow-Origin" = "*";
Connection = close;
"Content-Length" = 28;
"Content-Type" = "text/plain";
Date = "Thu, 12 Feb 2015 15:46:12 GMT";
Server = "Vimeo/1.0";
} }, NSErrorFailingURLKey=http://1511655313.cloud.vimeo.com/upload_multi?ticket_id=75225c91f65b14315902b8bee5fbbc44&signature=6126962b362c9c0777bce88556211572, NSLocalizedDescription=Request failed: bad request (400), com.alamofire.serialization.response.error.data=<5369676e 61747572 65205661 6c696461 74696f6e 20666169 6c65640a>, NSUnderlyingError=0x15d237a0 "Request failed: unacceptable content-type: text/plain"}
必要な助けをしてください。
ありがとうございました !