We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent f25b3ea commit 1cc45dfCopy full SHA for 1cc45df
sample/confidential_client_certificate_sample.py
@@ -67,7 +67,7 @@
67
graph_data = requests.get( # Use token to call downstream service
68
config["endpoint"],
69
headers={'Authorization': 'Bearer ' + result['access_token']},).json()
70
- print("Graph API call result: " + str(graph_data))
+ print("Graph API call result: %s" % json.dumps(graph_data, indent=2))
71
else:
72
print(result.get("error"))
73
print(result.get("error_description"))
0 commit comments