main
Bob Mottram 2020-02-06 12:15:27 +00:00
parent ac38dbbb36
commit 4d5b75c982
2 changed files with 7 additions and 2 deletions

View File

@ -976,7 +976,12 @@ if args.actor:
if personJson: if personJson:
pprint(personJson) pprint(personJson)
else: else:
print('Failed to get '+personUrl) asHeader = {'Accept': 'application/jrd+json; profile="https://www.w3.org/ns/activitystreams"'}
personJson = getJson(session,personUrl,asHeader,None,__version__,httpPrefix,None)
if personJson:
pprint(personJson)
else:
print('Failed to get '+personUrl)
sys.exit() sys.exit()
if args.addaccount: if args.addaccount:

View File

@ -58,7 +58,7 @@ def webfingerHandle(session,handle: str,httpPrefix: str,cachedWebfingers: {}, \
par = {'resource': 'acct:{}'.format(nickname+'@'+wfDomain)} par = {'resource': 'acct:{}'.format(nickname+'@'+wfDomain)}
hdr = {'Accept': 'application/jrd+json'} hdr = {'Accept': 'application/jrd+json'}
try: try:
result = getJson(session, url, hdr, par,projectVersion,httpPrefix,fromDomain) result = getJson(session,url,hdr,par,projectVersion,httpPrefix,fromDomain)
except Exception as e: except Exception as e:
print("Unable to webfinger " + url) print("Unable to webfinger " + url)
print('nickname: '+str(nickname)) print('nickname: '+str(nickname))