https://github.com/codedotjs/facebook-mass-comment
:computer: comment until facebook blocks you from spreading shit.
https://github.com/codedotjs/facebook-mass-comment
Last synced: 4 months ago
JSON representation
:computer: comment until facebook blocks you from spreading shit.
- Host: GitHub
- URL: https://github.com/codedotjs/facebook-mass-comment
- Owner: CodeDotJS
- Created: 2015-10-15T21:51:04.000Z (about 10 years ago)
- Default Branch: master
- Last Pushed: 2019-04-23T16:19:59.000Z (over 6 years ago)
- Last Synced: 2023-10-20T18:59:22.140Z (about 2 years ago)
- Language: Python
- Homepage:
- Size: 14.6 KB
- Stars: 13
- Watchers: 5
- Forks: 9
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# facebook-mass-comment
> comments 'n' times on any facbook post of a person or page.
## Authenticity
[Post](https://www.facebook.com/rishi.giri.90/posts/742132415898894)
# Running
> python comments.py
# Usage
## Token
```py
access_token = 'Paste your access token here'
Replace the text with the access token given by facebook.
```
## Total Comment
```py
for x in xrange(10):
Replace '10' with any number to comment that much time on a post.
```
## Message
```py
param_data = { ' format':'json',
'message':'<3', # change message from here
'access_token':access_token
}
```
## Post ID
```py
path ='/'+'PUT FB STATUS ID HERE'+'/comments'
url='/PUT FB STATUS ID HERE'
You have to replace __PUT FB STATUS ID HERE__ with the actual ID of a facebook post.
```
## Time
```py
time.sleep(0.09)
You can randomly generate time to save yourself from getting blocked.
```
## Full Tutorial
[Mass Commenting on Facebook Post](https://rishicodes.wordpress.com/2015/10/15/mass-commenting-on-facebook-posts)
# Installation
> sudo apt-get install python-pip
### Modules needed :
- __httplib2__
> sudo pip install httplib2
- __urllib3__
> sudo pip install urllib3 [ install Certifi and PyOpenSSL ]
- __bs4__
> sudo pip install bs4
- __json__
> sudo pip install json
## License
MIT © [Rishi Giri](http://rishigiri.com)