2

JSONデータを単純に投稿しようとすることに非常にこだわっていますが、何らかの理由で機能しません。

angular.module('pocket.controllers', [])
  .controller('ArticleList', function($scope, $http) {

    $scope.signIn = function() {

      var postObject = new Object();
      postObject.consumer_key = pocketKey;
      postObject.redirect_uri = "http://www.example.com";

      $http.post(apiUrl, postObject).success(function(data){
        alert(data);
      });
    }

  })

Chrome インスペクターでリクエストを調べると、実際にデータが投稿されているようには見えません。

Request URL:https://getpocket.com/v3/oauth/request
Request Method:OPTIONS
Status Code:400 Bad Request
Request Headersview source
Accept:*/*
Accept-Encoding:gzip,deflate,sdch
Accept-Language:en-US,en;q=0.8
Access-Control-Request-Headers:accept, origin, x-requested-with, content-type
Access-Control-Request-Method:POST
Cache-Control:no-cache
Connection:keep-alive
Host:getpocket.com
Origin:http://pocket.dev:8000
Pragma:no-cache
Referer:http://pocket.dev:8000/app/index.html
User-Agent:Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_4) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/28.0.1500.71 Safari/537.36
Response Headersview source
Cache-Control:private
Connection:keep-alive
Content-Length:15
Content-Type:text/html; charset=UTF-8
Date:Wed, 24 Jul 2013 17:18:04 GMT
P3P:policyref="/w3c/p3p.xml", CP="ALL CURa ADMa DEVa OUR IND UNI COM NAV INT STA PRE"
Server:Apache/2.2.25 (Amazon)
Status:400 Bad Request
X-Error:Missing consumer key.
X-Error-Code:138
X-Powered-By:PHP/5.3.27
X-Source:Pocket

ご覧のとおり、X-Error は "Missing consumer key" であり、データが正しく送信されていないことを意味します。

4

1 に答える 1

1

この行をコードに追加します。

$http.defaults.headers.post["Content-Type"] = "application/x-www-form-urlencoded";

変更されたコードは次のようになります。

angular.module('pocket.controllers', []) .controller('ArticleList', function($scope, $http) {

$scope.signIn = function() {

  var postObject = new Object();
  postObject.consumer_key = pocketKey;
  postObject.redirect_uri = "http://www.example.com";
  $http.defaults.headers.post["Content-Type"] = "application/x-www-form-urlencoded";
  $http.post(apiUrl, postObject).success(function(data){
    alert(data);
  });
}

}))

于 2013-07-25T12:03:30.190 に答える