I'm now working as as Software Developer at Shopify and this is the list of places I visited in Ottawa.
- Burrito Burracho
- well, what a surprise really good burritos
- Slice & Co.
- artisan italian style pizza
I'm now working as as Software Developer at Shopify and this is the list of places I visited in Ottawa.
| client = OAuth2::Client.new(API_CLIENT, API_SECRET, { | |
| :authorize_url => 'https://accounts.google.com/o/oauth2/auth', | |
| :token_url => 'https://accounts.google.com/o/oauth2/token', | |
| # Set options that get passed on to Faraday | |
| :connection_opts => {:proxy => { :uri => 'http://127.0.0.1:8888'} }, | |
| :ssl => {:verify => false} | |
| }) |
| # (create oauth2 tokens from Google Console) | |
| client_id = "" | |
| client_secret = "" | |
| # (paste the scope of the service you want here) | |
| # e.g.: https://www.googleapis.com/auth/gan | |
| scope = "" | |