I found out through a web grab that when I change the post on the web page, the web page sends a post request to /api/posts/:id
. But when I try to replicate the process in postman (using access_token) to authenticate, I get an error.
Here is the request body
{
"data": {
"type": "posts",
"attributes": {
"content": "wefawefwefawwafafew"
},
"id": "24"
}
}
Whether or not there is a restriction when using access-token to modify a post. How should I modify the post?