Skip to content

Commit f25b3ea

Browse files
authored
1 parent 736da1c commit f25b3ea

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

sample/confidential_client_secret_sample.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -66,7 +66,7 @@
6666
graph_data = requests.get( # Use token to call downstream service
6767
config["endpoint"],
6868
headers={'Authorization': 'Bearer ' + result['access_token']},).json()
69-
print("Graph API call result: " + str(graph_data))
69+
print("Graph API call result: %s" % json.dumps(graph_data, indent=2))
7070

7171
else:
7272
print(result.get("error"))

0 commit comments

Comments
 (0)