@Konsilion Could be a cache issue perhaps. I registered, and see this
579204d6-41c4-44b2-9458-e28cad6b3cac-image.png
Hi, @phenomlab!
Calls to create:
In my project I call the /api/v3/topics/
to create a new topic via Python and requests
lib:
data = {
"cid": int(cid),
"title": entry.title,
"content": '\n'.join(description),
"tags": tags
}
headers = {'Authorization': 'Bearer {token}'.format(token=os.environ.get('NODEBB_TOKEN'))}
url = '{host}/api/v3/topics/'.format(host=os.environ.get('NODEBB_URL'))
response = requests.post(
url=url,
headers=headers,
json=data
)
response.raise_for_status()