Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

How to get permanent token for using whatsapp cloud api?

The access token provided by Whatsapp cloud API expires in 24 hours. Is there a way to get a permanent access token?

There is an official link for getting a permanent token on the whatsapp website : Learn how to create a permanent token but it is another rabbit hole which does not state how to get permanent access token.

If someone has done this successfully, please help me and other frustrated developers :)

like image 464
Dinesh Singh Avatar asked Sep 14 '25 07:09

Dinesh Singh


1 Answers

You need to set up a system user as the admin of your app. You can then generate never expiring access tokens for this system user.

Step by step guide to set it up:

  1. Add a system user to your facebook app if it doesn't exist yet. Make sure it has the admin role.
  2. On the same page, in the "Assigned Assets" section, check whether your app is listed here. If not, add your app via the "Add asset" button, granting "Full control" over your app.
  3. Add the system user to your Whatsapp account in the "People" section, granting "Full control" over your Whatsapp account
  4. Now click the "Generate new token" button for above system user which reveals a "Generate token" popup. Select the 2 permissions whatsapp_business_management and whatsapp_business_messaging and confirm
  5. A new access token is presented to you as a link. Click it and then store the generated token safely as it will not be stored for you by facebook. This token will not expire.
like image 167
Lars Blumberg Avatar answered Sep 16 '25 09:09

Lars Blumberg