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