Skip to content

Instantly share code, notes, and snippets.

@DxDiagDx
Last active May 3, 2021 21:13
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save DxDiagDx/d5dfee91639080d05527b7128ca77950 to your computer and use it in GitHub Desktop.
Save DxDiagDx/d5dfee91639080d05527b7128ca77950 to your computer and use it in GitHub Desktop.
WordPress + Python: авторизация
import requests
import json
import base64
url = "https://example.com/wp-json/wp/v2/posts"
user = "your-username"
password = "your-application-password"
credentials = user + ':' + password
token = base64.b64encode(credentials.encode())
header = {'Authorization': 'Basic ' + token.decode('utf-8')}
responce = requests.get(url , headers=header)
print(responce)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment