Hello …
I am using API Actions from android Studio to update data here my code to get response, For Example :
val request: Request = Request.Builder()
.url("https://mysite.com/myprojectName/api/edit/contact_us/736")
.method("POST", body)
.addHeader(
"Cookie",
"myprojectName[JWT]=$JWT"
)
.build()
evry thing works fine , but I have a little problem here ,
The JWT token it’s Expire after 2 min
how I can make the Expire time of token longer then 2 min ?
I have try to change API expire time to 0
in Advanced Settings but still expire after 2 min
any idea , Thanx