我正在制作一个类似于 url 的 API 系统,localhost:8080/api/v1/end_name
并且我正在使用django-rest-framework-social-oauth2库进行社交身份验证,也用于我的自定义用户身份验证。问题是他们正在为 url 提供 api 响应,例如localhost:8080/auth/token
以下格式
{
"access_token": "........",
"expires_in": 36000,
"token_type": "Bearer",
"scope": "read write",
"refresh_token": "......"
}
但我需要以我的方式自定义它,因为我的响应格式不同。我的一个就像跟随..
{
"error": false,
"message": "User created successfully",
"data": {
"email": "localtestuse2@beliefit.com"
}
}
我需要我的回复data: {}
。我的一个问题是
- 我该怎么做?
我的另一个问题是
- 我可以自定义 api url
localhost:8080/auth/token
吗localhost:8080/api/v1/auth/token
?