Granting access to IIS 7.5 ApplicationPoolIdentity [duplicate]

Ok I have the solution: When using “ApplicationPoolIdentity” with IIS 7.5 the corresponding user is (a virtual system user): “IIS AppPool\<AppPoolName>” You can grant this user permissions and check security setting by searching for this user. See the full explanation here: http://www.iis.net/learn/manage/configuring-security/application-pool-identities

How to generate access token using refresh token through google drive API?

If you are using web api then you should make a http POST call to URL : https://www.googleapis.com/oauth2/v4/token with following request body client_id: <YOUR_CLIENT_ID> client_secret: <YOUR_CLIENT_SECRET> refresh_token: <REFRESH_TOKEN_FOR_THE_USER> grant_type: refresh_token refresh token never expires so you can use it any number of times. The response will be a JSON like this: { “access_token”: “your refreshed … Read more