hello

hello


EVAL: import requests ab = "hello" API = "https://api.telegra.ph/createPage" access_token = "137c591d35dcb4075767daeb4a2c48520657074b769a5aa1bdbe6fb848dd" title = "Hagadmansa" author_name = "Hagadmansa" author_url = "https://www.hagadmansa.com" makeit = requests.get(f"https://api.telegra.ph/createPage?access_token={access_token}&title={title}&author_name={author_name}&author_url={author_url}&content=%5B%7B%22tag%22:%22p%22,%22children%22:%5B%22{ab}%22%5D%7D%5D&return_content=true").json() #war = makeit["error"] print(makeit) OUTPUT: {'ok': True, 'result': {'path': 'Hagadmansa-07-23', 'url': 'https://telegra.ph/Hagadmansa-07-23', 'title': 'Hagadmansa', 'description': '', 'author_name': 'Hagadmansa', 'author_url': 'https://www.hagadmansa.com/', 'content': [{'tag': 'p', 'children': ['hello']}], 'views': 0, 'can_edit': True}}

Report Page