import { fetch } from 'wix-fetch'; export function getAccessToken(code) { const LINE_CHANNEL_ID = 'YOUR_CHANNEL_ID'; const LINE_CHANNEL_SECRET = 'YOUR_CHANNEL_SECRET'; const REDIRECT_URI = 'YOUR_REDIRECT_URI'; const tokenPayload = { grant_type: 'authorization_code', code: code, redirect_uri: REDIRECT_URI, client_id: LINE_CHANNEL_ID, client_secret: LINE_CHANNEL_SECRET }; return fetch('https://api.line.me/oauth2/v2.1/token', { method: 'POST', headers: { 'Content-Type': 'application/x-www-form-urlencoded', }, body: new URLSearchParams(tokenPayload) }) .then(response => { if (!response.ok) throw new Error('Network response was not ok'); return response.json(); }); }
top of page

Latest News

2023年3月17日

5 most promising Fintech startups

This is placeholder text. To change this content, double-click on the element and click Change Content.

5 most promising Fintech startups

2023年3月21日

Gadget review: release of new Airy Pods

This is placeholder text. To change this content, double-click on the element and click Change Content.

Gadget review: release of new Airy Pods

2023年3月22日

Best smart wearables of 2023

This is placeholder text. To change this content, double-click on the element and click Change Content.

Best smart wearables of 2023

2023年3月19日

How technology can help curb attention disorders

This is placeholder text. To change this content, double-click on the element and click Change Content.

How technology can help curb attention disorders

2023年3月18日

Entering a new era of IoT

This is placeholder text. To change this content, double-click on the element and click Change Content.

Entering a new era of IoT

2023年3月20日

Long-term benefits of clean energy sources

This is placeholder text. To change this content, double-click on the element and click Change Content.

Long-term benefits of clean energy sources
bottom of page