AXION Meta OAuth Gateway
👤 Portfólio / Cliente:
Gateway Online
Enterprise

Meta API
OAuth Gateway

Conexão segura e centralizada com a Meta Graph API. Gerencie tokens JWT de longa duração e permissões para WhatsApp Business, Meta Ads e Business Manager.

Nova Conexão

Conecte uma conta Meta e defina os escopos autorizados.

Token de Acesso Meta

JWT / User Access Token da conta conectada.

Carregando token...

SDK Integration

Exemplos de código para integrar suas aplicações com a Meta API via Gateway.

# pip install requests
import requests

GATEWAY_URL = "https://meta-oauth.axionenterprise.cloud"
META_TOKEN = "SEU_META_ACCESS_TOKEN_JWT"

# 1. Enviar Template WhatsApp
response = requests.get(f"{GATEWAY_URL}/api/send-template", params={
    "phoneNumberId": "1254164991108190",
    "token": META_TOKEN,
    "name": "hello_world",
    "to": "5511988045139"
})
print(response.json())
// Node.js fetch nativo ou axios
const gatewayUrl = 'https://meta-oauth.axionenterprise.cloud';
const metaToken = 'SEU_META_ACCESS_TOKEN_JWT';

const query = new URLSearchParams({
  phoneNumberId: '1254164991108190',
  token: metaToken,
  name: 'hello_world',
  to: '5511988045139'
});

const res = await fetch(`${gatewayUrl}/api/send-template?${query}`);
const data = await res.json();
console.log(data);
# Teste via cURL de envio de template
curl -X GET "https://meta-oauth.axionenterprise.cloud/api/send-template?phoneNumberId=1254164991108190&token=SEU_META_ACCESS_TOKEN_JWT&name=hello_world&to=5511988045139" \
  -H "Accept: application/json"