how to change expire JWT token time for API ?

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

rembo wrote:

I have try to change API expire time to 0 in Advanced Settings but still expire after 2 min >

Setting to 0 won’t work, you need to set it to a large enough value, be reminded that the advanced settings is in seconds.