Monthly Archives: November 2017

How to debug SharePoint project?

You need to change the project setting to start the project from the site url you’re debugging with:

Posted in Uncategorized | Leave a comment

.Net Google OAuth APIs

https://developers.google.com/google-apps/tasks/quickstart/dotnet

Posted in Uncategorized | Leave a comment

Python Google OAuth2 – how to bypass https required error?

If your callback page is not https, you’ll get the “OAuth 2 MUST utilize https” error. To bypass it, use these code in your php: import os os.environ[‘OAUTHLIB_INSECURE_TRANSPORT’] = ‘1’

Posted in Uncategorized | Leave a comment

How to turn on SharePoint Developer Dashboard with Powershell?

if ((Get-PSSnapin “Microsoft.SharePoint.PowerShell” -ErrorAction SilentlyContinue) -eq $null) { Add-PSSnapin “Microsoft.SharePoint.PowerShell” } $d = [Microsoft.SharePoint.Administration.SPWebService]::ContentService.DeveloperDashboardSettings $d.DisplayLevel = ‘OnDemand’ $d.TraceEnabled = $true $d.Update()

Posted in Uncategorized | Leave a comment

How to use Google API site?

https://developers.google.com/google-apps/tasks/quickstart/php#step_2_install_the_google_client_library

Posted in Uncategorized | Leave a comment

How to get to Google APIs console?

Google APIs site is very confusing and here is how to get to the console without being stuck in your project area: https://console.developers.google.com/cloud-resource-manager

Posted in Google Road Map | Leave a comment

How to get to Google APIs credentials page?

Go to Google APIs page first: Google APIs. Click on “Google APIs” icon on top left corner and then click on “Credentials” on left nav.

Posted in Google Road Map | Leave a comment

Google Road Map

Our organization is going for google and abandoning Microsoft. For now on, I need to learn google stuff.

Posted in Google Road Map | Leave a comment