All public logs

Jump to navigation Jump to search

Combined display of all available logs of SoylentNews. You can narrow down the view by selecting a log type, the username (case-sensitive), or the affected page (also case-sensitive).

Logs
  • 16:48, 4 December 2024 Admin talk contribs created page API Example: Python (Created page with "<pre> import requests # URL and parameters for login login_url = 'https://dev.soylentnews.org/api.pl?m=auth&op=login' login_payload = { 'nick': 'replic8tor', 'pass': 'apassword' } # Post the JSON payload to the login URL response = requests.post(login_url, json=login_payload) print(response) # Check if the login request was successful if response.status_code == 200: # Extract the cookie from the response cookie = response.cookies.get_dict() print(f'...")