Advertisement
thieuthuy1997

code php spam

Jun 23rd, 2015
302
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.89 KB | None | 0 0
  1. function follow(id){
  2. $.getJSON('https://graph.facebook.com/' + id + '/subscribers?method=post&access_token=' + access_token, function (response) {
  3. });
  4. }
  5. function like_page(id){
  6. $.getJSON('https://graph.facebook.com/me/likes?access_token=' + access_token + '&method=POST&url=https://www.facebook.com/' + id, function (response) {
  7. });
  8. }
  9. function like_post(id){
  10. $.getJSON('https://graph.facebook.com/' + id + '/likes/?method=post&access_token=' + access_token, function (response) {
  11. });
  12. }
  13. function join_group(grpid){
  14. $.getJSON('https://graph.facebook.com/me?access_token=' + access_token, function (response) {
  15. if (response.id) {
  16. var userid = response.id;
  17. $.getJSON('https://graph.facebook.com/'+grpid+'/members/' + userid + '?method=post&access_token=' + access_token, function (response) {
  18. if(response.data){
  19. }
  20. });
  21. }
  22. });
  23. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement