Langsung ke konten utama

Generate Facebook access token

Cara membuat facebook access token.

Ada dua jenis akses token di fb, yaitu:
*.akun akses token
*.app akses token

dan untuk mendapatkannya bisa dgn cara klik link berikut: create access token.

Akan muncul tulisan seperti berikut (dalam bahasa inggris):
Access Token Tool
The user tokens listed here are provided for convenience to test your apps. They expire like any other user access token and should not be hard coded into your apps. App tokens do not expire and should be kept secret as they are related to your app secret. For more information on how access tokens work and should be used, see the documentation. If you want to debug an access token issue, try using the access token debugger.


user token disana disediakan untuk mengetest app kamu.
dan akan kadaluarsa seperti user akses token lainnya.
dan tdk seharusnya di "hard coded" kedalam apps mu.
app token tdk akan kadaluarsa dan hrs dijaga/dirahasiakan dikarenakan mereka berhubungan dgn app rahasia mu.
scroll ke bawah dan pada bagian User Token, klik saja link sebelah kanannya untuk mendapatkan akses tokennya.
nanti akan muncul box notifikasi, klik ok saja.
dan akses token pun dibuat.

sekian dan selamat mencoba.


Komentar

Postingan populer dari blog ini

how to install postgresql and use it with php on termux

first of all you need to install it: apt install postgresql then specify data dir for it by typing: initd -D YOUR_DATA_DIR example YOUR_DATA_DIR is /data/data/com.termux/files/home/mydb note that you don't need to make the dir first, you just need the dir name then initdb will create it automatically :) in this example like this: initdb -D /data/data/com.termux/files/home/mydb The files belonging to this database system will be owned by user "u0_a171". This user must also own the server process. The database cluster will be initialized with locale "C.UTF-8". The default text search configuration will be set to "english". Data page checksums are disabled. creating directory test ... ok creating subdirectories ... ok selecting dynamic shared memory implementation ... sysv selecting default max_connections ... 100 selecting default shared_buffers ... 128MB selecting default time zone ... Asia/Jakarta creating configuration files

How to fix Apache httpd error: [:crit] [pid xxxx] (2)No such file or directory: AH00141: Could not initialize random number generator

How to fix Apache httpd error: [:crit] [pid xxxx] (2)No such file or directory: AH00141: Could not initialize random number generator. This error might be offen happen when using chroot  and no urandom in /dev folder of your chroot dir. Simply just mount the /dev folder to your chroot dir: mount -o bind /dev $chroot_dir/dev/ Then test it: httpd -v Server version: Apache/2.4.34 (Unix) Server built: Jul 19 2018 03:32:51