我在我的应用程序中使用OAuth2
和Django-Rest_Framework
。
当我尝试GET
并在我的应用程序中运行时。但是当我尝试POST
时,我收到了错误。
我在Postman中尝试了两种方法,效果很好..
我错过了O Auth2 settings
中的某些内容吗?
这是我使用POST
Angular2
代码
PostLevelling(test: Test) {
return this.http.post('http://localhost:8000/api/v1/test/', {headers: this.getHeaders()})
.map((res:Response) => res.json());
}