How can i login to rest api using php script only (no any browser option)

i need to login to rest api using php script without prompting allow deny permission direclty. how can i capture the returned response (code for generating token) from callback thanks :slight_smile:

Store the token in a file and read the file in your other scripts that require the token.

You get auth one time and then cycle the token set before the access token expires in 24 hours

1 Like

yes thanks will try this way . :slight_smile: