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 736da1c commit f25b3eaCopy full SHA for f25b3ea
sample/confidential_client_secret_sample.py
@@ -66,7 +66,7 @@
66
graph_data = requests.get( # Use token to call downstream service
67
config["endpoint"],
68
headers={'Authorization': 'Bearer ' + result['access_token']},).json()
69
- print("Graph API call result: " + str(graph_data))
+ print("Graph API call result: %s" % json.dumps(graph_data, indent=2))
70
71
else:
72
print(result.get("error"))
0 commit comments