Last active
March 30, 2025 03:49
scripts
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import requests as req | |
if __name__=="__main__": | |
parser = argparse.ArgumentParser(description="python3 facebook-api-tester.py --id <id> --token <token>") | |
parser.add_argument("--id", type=str, help="facebook app/client id", required=True) | |
parser.add_argument("--token", type=str, help="facebook app/client token", required=True) | |
args = parser.parse_args() | |
Comments are disabled for this gist.