Posts by João Pedro Bretanha • 68 points
3 posts
-
2
votes1
answer62
viewsA: How to get a string from a json?
What you can do is getData().subscribe(res => this.value = JSON.stringify(res)). If that’s what I understood, it would be :)
-
1
votes2
answers665
viewsA: Does one script start running only after another or at the same time?
Your question may have several interpretations. From what I understand you want to know if including 2 scripts with the tag script, it will run one after the other. Abstracting, the answer would be…
-
2
votes1
answer168
viewsQ: Insufficient Permission with Google Calendar api v3 using python
I’m not getting permissions to create the event. Below the code I’m using: import httplib2 import os import json from apiclient import discovery import oauth2client from oauth2client import client…