Skip to content

Instantly share code, notes, and snippets.

@William957-web
Last active February 25, 2025 04:55
scripts
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()
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment