リクエストでパラメーターとして値を渡すと、次のように機能します。
curl "http://localhost:8080/wordgame/api/v1/rounds/?username=test_user&api_key=12345678907a9cb56b7290223165e0a7c23623df&format=json"
ただし、値をヘッダーとして渡そうとすると機能しません。これにより、401 が発生します。
curl -H "Authorization: ApiKey test_user:12345678907a9cb56b7290223165e0a7c23623df" -H "Accept: application/json" http://localhost:8080/wordgame/api/v1/rounds/
Tastypie ApiKeyAuthenticationを使用しています