Posting to inbox

master
Bob Mottram 2019-06-28 20:28:36 +01:00
parent e5a03e0fe9
commit 9c2859b616
1 changed files with 6 additions and 0 deletions

View File

@ -206,3 +206,9 @@ def createPublicPost(username: str, domain: str, https: bool, content: str, foll
}
}
return newPost
def postToInbox(session,postJson,inboxUrl: str):
"""Post a json message to the inbox of another person
"""
postResult = session.post(url = inboxUrl, data = postJson)
return postResult.text