oauth2_provider
にrest_framework
を使用しています。 APIのテストケースを作成しようとしています。アクセストークンを取得しました。しかし、APIClient
でaccess token
を使用してユーザーを認証できません。このcurlコマンドをAPIClient
で機能させることを検討しています。
curl -H "Authorization: Bearer <your_access_token>" http://localhost:8000/api/v1/users/current/
私が試してみました
client.get('/api/v1/users/current/', headers={'Authorization': 'Bearer {}'.format(self.access_token)})
そして
client.credentials(HTTP_AUTHORIZATION='Token ' + self.access_token)
これがスニペットの一部です
from rest_framework.test import APIClient
from rest_framework.test import APITestCase
....
class APITest(APITestCase):
def setUp(self):
...
self.client = APIClient()
...
response = self.client.post('/api/v1/oauth2/token/', post_data)
self.access_token = response.json()['access_token']
def test_get_current_user(self):
client.get('/api/v1/users/current/', headers={'Authorization': 'Bearer {}'.format(self.access_token)})
返答があります
<HttpResponseForbidden status_code=403, "text/html; charset=utf-8">
CurlではAuthorization: Bearer
を使用しているため、Bearer
の代わりにToken
Wordでclient.credentials
も使用する必要があります。
client.credentials(HTTP_AUTHORIZATION='Bearer ' + self.access_token)