fix submitting events
This commit is contained in:
parent
c7592e9ff5
commit
71263bbefa
1 changed files with 2 additions and 1 deletions
|
|
@ -4,6 +4,7 @@ import requests
|
||||||
import json
|
import json
|
||||||
from bs4 import BeautifulSoup
|
from bs4 import BeautifulSoup
|
||||||
import os
|
import os
|
||||||
|
import sys
|
||||||
|
|
||||||
# Read environment variables (fail if missing)
|
# Read environment variables (fail if missing)
|
||||||
EINTOPF_URL = os.environ["EINTOPF_URL"]
|
EINTOPF_URL = os.environ["EINTOPF_URL"]
|
||||||
|
|
@ -38,7 +39,7 @@ def eintopf_post_event(title, location, description, time_start, time_end):
|
||||||
"tags": ["karlsruhe"],
|
"tags": ["karlsruhe"],
|
||||||
"topic": "Veranstaltung"
|
"topic": "Veranstaltung"
|
||||||
}
|
}
|
||||||
response = requests.post(EINTOPF_URL, json=payload, headers={
|
response = requests.post(EINTOPF_URL + "/api/v1/events/", json=payload, headers={
|
||||||
"Authorization": EINTOPF_AUTHORIZATION_TOKEN,
|
"Authorization": EINTOPF_AUTHORIZATION_TOKEN,
|
||||||
"Content-Type": "application/json"
|
"Content-Type": "application/json"
|
||||||
})
|
})
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue