Pregunta

First, I know this question has been asked several times. I have tried many posted solutions and nothing is working for me..

Here are a few other places this was asked:

The attempts:

var app = angular.module('theApp', ['app.services']);


app
  .config(['$httpProvider', function ($httpProvider) {
    // Try (1): This doesn't work
    $httpProvider.defaults.headers.common['Content-Type'] = 'application/json;charset=utf-8';
    // Try (2): This doesn't work either
    $httpProvider.defaults.headers.post['Content-Type'] = 'application/json;charset=utf-8';
  }])


angular.module('app.services', ['ngResource'])
  // Resource for Drupal system/connect.post API (via services.module)
  .factory('SystemConnect', function($resource, $http) {
    // Try (3): There's no way this should work. But what the hell let's try!
    $http.defaults.headers.common['Content-Type'] = 'application/json;charset=utf-8';
    $http.defaults.headers.post['Content-Type'] = 'application/json;charset=utf-8';

    return $resource('api/system/connect.json', {}, {
      post: {
        method: 'POST',
        params: { },
        isArray: true,
        // Try (4): This doesn't work either
        headers: { 'Content-Type': 'application/json;charset=utf-8' }
      }
    });
  });


function SomeCtrl($scope, SystemConnect) {
  // FAIL, this results in "406 Not Acceptable: Unsupported content type application/xml"
  $scope.user = SystemConnect.post();
}
app.controller('SomeCtrl', SomeCtrl);

It sounds like many people have solved this before. Could someone kindly let me know the right way to do this?

PS: Weirdly, when running this code in Firefox, Angular uses 'Content-Type: text/plain' for the POST!?

¿Fue útil?

Solución

I remember reading you have to include content in a post for it to accept your header changes.

$scope.user = SystemConnect.post({});
Licenciado bajo: CC-BY-SA con atribución
No afiliado a StackOverflow
scroll top