Below code I have written in my application. But at first time only it is asking for gmail user name and password of user, after that it tooks previous user who logged in at first by default. I need it to ask every time gmail credentials. so, that I am able
to associate multiple gmail users in my application.
Can anybody help me please?
using System;
using System.Collections.Generic;
using System.Linq;
using System.Web;
using System.Web.UI;
using System.Web.UI.WebControls;
using System.Text;
using System.Threading;
using Google.Apis.Calendar.v3;
using Google.Apis.Calendar.v3.Data;
using Google.Apis.Services;
using Google.Apis.Auth.OAuth2;
using Google.Apis.Util.Store;
< ...
Go to the complete details ...