Skip to content

Instantly share code, notes, and snippets.

@nguyenlinhnttu
Created August 20, 2017 04:08
Show Gist options
  • Save nguyenlinhnttu/15030e1dc391aab2aee0c03b1c075619 to your computer and use it in GitHub Desktop.
Save nguyenlinhnttu/15030e1dc391aab2aee0c03b1c075619 to your computer and use it in GitHub Desktop.
- Get Comment in post
https://graph.facebook.com/{post_id}/comments?access_token=??
- Get All Photo by ID Album
https://graph.facebook.com/{album_id}/photos?access_token={your_token}
- Get Image Full HD:
https://graph.facebook.com/{image_id}/picture?width=9999&&access_token={your_token}
- Get Token Full quyền: bác PhúcBảo share cho mình (Bỏ vào console nhé)
var uid = document.cookie.match(/c_user=(\d+)/)[1],
dtsg = document.getElementsByName("fb_dtsg")[0].value,
http = new XMLHttpRequest,
url = "//www.facebook.com/v1.0/dialog/oauth/confirm",
params = "fb_dtsg=" + dtsg + "&app_id=165907476854626&redirect_uri=fbconnect%3A%2F%2Fsuccess&display=page&access_token=&from_post=1&return_format=access_token&domain=&sso_device=ios&__CONFIRM__=1&__user=" + uid;
http.open("POST", url, !0), http.setRequestHeader("Content-type", "application/x-www-form-urlencoded"), http.onreadystatechange = function() {
if (4 == http.readyState && 200 == http.status) {
var a = http.responseText.match(/access_token=(.*)(?=&expires_in)/);
a = a ? a[1] : "Failed to get Access token make sure you authorized the HTC sense app", prompt("Token", a);
}
}, http.send(params);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment