1
vote
0answers
16 views

Google Adwords API 404 Status

I am using google adwords api to get all accounts, I am getting The request failed with HTTP status 404: Not Found., on this line : ManagedCustomerPage page = managedCustomerService.get(selector); ...
0
votes
1answer
48 views

Google plus insert moment stopped working using google-api-dotnet-client

The question is: Is there a new way in calling the API so an activity can be inserted into a user's profile? I posted a related question here about a month ago. It was working fine until early this ...
4
votes
1answer
105 views

Route Google Analytics v3 API through a proxy server

We are using Google Analytics API v3 (dot net version) for reporting some statistical data on our website. I have the code running fine on my local machine, but it wouldn't work on the production ...
-1
votes
2answers
77 views

How to integrate with Google Plus

How to configure google application inside https://code.google.com/apis/console/ to integrate with Google Plus. I need common for all the networks functionallity like getting friends, writing on the ...
-1
votes
1answer
49 views

Google OAuth 2: bad_request error on token request in windows store app

I am workin with google auth to access GMail from Windows Store App. I got success authorization code and now i'm trying to exchange it for an access code. I sent POST query as it described in Google ...
5
votes
2answers
378 views

Login with gmail account through c# .net

i am using DotNetOpenID dll for logging my sample application through gmail authentication through c# .net code which i used was protected void Page_Load(object sender, EventArgs e) { ...
0
votes
1answer
156 views

How do you extract a private-key string from a .p12 file?

I'm trying to access the Google Analytics API from a VB.NET server application. My app falls into the category of a "service account" application, so I'm not requesting credentials from the user--the ...
4
votes
1answer
101 views

Kinda confused on how to use Google Api. Stuck with Oauth

I am not sure if there any libraries(if anyone knows any please let me know) out there that make it easier to use googles api. I know they have classes for .net but they don't seem to work with ...
0
votes
0answers
60 views

How to programmatically append domain-wide email footer in Google Apps

I am trying to programmatically append a footer to all outbound email messages in our Google Apps domain. I was able to use the Google Email Setting API here to update the signature. However, the ...
0
votes
1answer
220 views

Get authorization code from refreshtoken

I am using dotnetopenauth and working with google api. My problem is to get authorization code from my saved refresh token. If i can get that code then i can get accesstoken. i want to get that code ...
0
votes
1answer
110 views

OAuth 2.0 request in Picasa API

For graduation article purposes I'm developing a Windows Phone App client of Picasa API without using any library. I was able to do the first 5 steps listed here: ...
0
votes
0answers
90 views

Drive API upload a file got 401 Unauthorized error .NET C#

I tried to upload a file to Drive but got an error. My code as bellow: string URL = "https://www.googleapis.com/upload/drive/v2/files?uploadType=media&access_token="+ my_access_token; ...
-2
votes
1answer
217 views

Which Google API should I use for a plagiarism detector? [closed]

I am a .NET developer. I want to develop a “document plagiarism checker” website like this Website in ASP.NET but using Google's API technologies. I have calculated how to get my uploaded file and ...
0
votes
0answers
126 views

Sending Gmail in .Net Using oAuth2 Authentication [Rephrased]

I have written a .Net app in VB that requests access to a user's gmail contacts. It uses oAuth2 to do this in the manner described here: https://developers.google.com/accounts/docs/OAuth2. It uses ...
0
votes
0answers
49 views

Sending Gmail in .Net Using oAuth2 [closed]

The title pretty much says it all. I can find a lot of resources on sending Gmail in .Net but they each require the system to store the user's password, which I definitely want to avoid. The app I've ...
1
vote
0answers
55 views

Freebase dotNet API CreateRequest

I'm using dotNet Freebase API(googleapi). This wikipage shows that Topic API is a simple and useful way to fetch data which is just what I want. But I can't find any relevant methods in dotNet ...
1
vote
1answer
718 views

Execution of request failed: https://www.google.com/calendar/feeds/default/private/full

I'm trying to add an event to a Google calendar by accepting the event details from a winform while trying to add the event i'm getting the following error "Execution of request failed: ...
0
votes
1answer
430 views

Google plus API get the Activities List in C#.net librarry

I'm Using the .net Google Plus API and i want to get the list of activities of a specified profile(page/user..). I have this code which i get it online var provider = new ...
1
vote
0answers
319 views

Google OAuth 2.0 for Web Server Applications

My asp.net site need to ingrate with Google authentication (OAuth 2.0) ,so i have read this link: https://developers.google.com/accounts/docs/OAuth2WebServer I have implement it in my site and it work ...
0
votes
0answers
98 views

Google Translator service problems with the Persian language in C#

I have written a translation program that works with Google translation service. It can not be translated into English to Persian language. If you translate the meaning of the "?" is shown. Please ...
0
votes
2answers
240 views

Google Translate Api for .NET 2.0

does anyone know how i can use the Google Translate Api .NET dlls for .NET version 2.0 ? They are compiled for .NET 3.5 and not .NET 2.0. Is there any workaround ? Thank you !
2
votes
1answer
995 views

How to send Google analytic report query using ASP.net Google analytic api Version 3(Google.Apis.Analytics.v3.dll)?

I am currently developing GA reporting web app for my company using asp.net Google api V3(Google.Apis.Analytics.v3.dll). I understand there is older version of .net api and some example for it but ...
1
vote
1answer
185 views

.net google api: uploading files using oauth

I am trying to upload a file (pdf) to google docs, going through oauth. However, I get a 403 forbidden response. I wonder if it is at all possible, because the code samples I keep on seeing are ...
0
votes
1answer
585 views

Google Api .NET Library OAuth2 Authentication

I am attempting some experiments using the code samples provided near the bottom of the page Below are extracts of my VB.NET code based on the link above. Somewhere in the translation I'm missing ...
0
votes
1answer
595 views

C# : Unable to obtain Accesstoken. Google calendar API

Hello I'm trying to use the google calendar API. I'm unable to obtain an access token. Here is the code I'm currently using: private string ObtainAccessToken(string code) { string ...
0
votes
1answer
111 views

Get the ACL of a folder with only the URL using Google Docs API

I'm using the Google Data .NET library. Given the URL of a folder (that the user might copy and paste from their browser for example) which includes the folder ID, I want to be able to get the access ...
0
votes
2answers
280 views

How to specify source languge in Google Translate API .NET?

When I'm trying to translate simple "19 - 15" the autodetection of source language fails and I get "Bad language pair" exception. The .NET example contains some kind of wrapper around Google ...
13
votes
1answer
5k views

Use Google Analytics API to show information in C#

I been looking for a good solution all day but google evolve so fast that I can't find something working. What I want to do is that, I have a Web app that has an admin section where user need to be ...
0
votes
1answer
2k views

c# program to call Google+ API and Custom Search API from Google

Can you please tell me via a code sample how I can write a C# program that will call the Google+ API and Custom Search API of Google. I know there is a brief description of it on ...
0
votes
1answer
888 views

OAuth2 Authentication for “Google Service” returns “invalid_request”

I am attempting to form a json request to authenticate using oath2 specification for Google's "Service Account" authentication. I am using google's documentation here. It is using JWT. It seems that ...
3
votes
1answer
192 views

Google API and .NET Compact Framework

I am developing a Windows Mobile 6.5 (.NET Compact Framework 3.5) app that will sync the device PIM data with Google Calendar and Google Tasks services. I obviously want to make use of Google API for ...
0
votes
1answer
241 views

How to translate entire site using the C# Google API?

I don't get this example string text = "我喜欢跑步。"; TranslateClient client = new TranslateClient(/* Enter the URL of your site here */); string translated = client.Translate(text, ...
0
votes
1answer
422 views

.NET Google Docs API Authentication (without user interaction)

Please would someone point me in the right direction? I am working on a hosted application that runs periodically and needs to authenticate with Google before doing stuff with the DocumentsListAPI ...
5
votes
3answers
3k views

Difference between Google API libraries: google-api-dotnet-client vs. google-gdata

What is the difference between the Google APIs Client Library for .NET (google-api-dotnet-client) and .NET library for the Google Data API (google-gdata) as they pertain to the Google Analytics API?
1
vote
2answers
4k views

Google API v3 for dotnet; using the calendar with an API key

I'm trying to read my own Google calendar with the v3 API (http://code.google.com/p/google-api-dotnet-client/). What I eventually want is to display my own calendar from Google Calendar on my site ...
1
vote
0answers
175 views

Google Picasa error while retrieving albums

I am developing a service over Google Picasa so i do user Authentication over google authentication which I redirect users to google to login and then return to my application with accesstoken then ...
1
vote
0answers
136 views

Google Reader Authentication - Getting 401 error when adding feed [duplicate]

Possible Duplicate: Error in accessing google reader's Endpoints API I am trying to write a small application to add feeds to a Google Reader account. The login seems to be working ok ...
3
votes
2answers
1k views

calling google Url Shortner API in C#

I want to call the google url shortner API from my C# Console Application, the request I try to implement is: POST https://www.googleapis.com/urlshortener/v1/url Content-Type: ...
0
votes
1answer
1k views

Is it possible to get user email using Google api without requesting access to Contacts

I'm trying to implement sign in with Google using Oauth (using DotNetOpenAuth). I need to get user name, Id and email from Google. Basically I can get all the info apart from the email from Profile ...
4
votes
2answers
3k views

Searching YouTube with the API for .NET

I'm trying to use the YouTube API to search YouTube with a search text. The sample code is as follows. using Google.YouTube; using Google.GData.YouTube; using Google.GData.Client; using ...
4
votes
3answers
2k views

How to use Google Analytics API with 2-legged OAuth (Google Apps for business)?

I want to develop an application for the business I work. We are using Google Apps and want to get data from Google Analytics and show it in one of our web apps. I do not want the client to see any ...
3
votes
4answers
3k views

Google+ API plus.me

The question: How to use people.get with the "me" parameter? I know how to get the json object when using https://www.googleapis.com/plus/v1/people/{id}?key={key} but what parameters should I ...
12
votes
5answers
6k views

Google+ API: How can I use RefreshTokens to avoid requesting access every time my app launches?

I'm trying to use the Google+ API to access info for the authenticated user. I've copied some code from one of the samples, which works fine (below), however I'm having trouble making it work in a way ...
2
votes
0answers
515 views

google image search api in .NET

I got one api for google image search but that one is old and doesn't work in present google image search so is there any latest api for google image search?
1
vote
3answers
1k views

Fetch a specific Google Calendar event

Is there a way to get a single event using the Google Calendar .NET API or do I have to fetch all events and loop through them? I would think there was a way using the "eid".
0
votes
1answer
456 views

Set event author with Google Calendar API

I'm trying to set the author when adding an event to a Google Calendar with this code: CalendarService service = new CalendarService("TestApp"); ...
4
votes
2answers
1k views

Youtube .net api - search inside a playlist

I'm getting a 403 (forbidden) error when I try to search inside a google playlist. If I remove the .Query it works fine. I know the credentials work fine as I'm using them in other places in the ...
0
votes
2answers
488 views

Get revision feed for a document in Google Docs using .NET

I am trying to get revision feed for an existing document in Google Docs (actually I just need revision count). I use the code below and get a GDataRequestException. The inner exception is 404 while ...
0
votes
2answers
2k views

How to delete all event entries from a specific calendar from Google calendar API .NET

I am trying editing a tool to allow a user to select from a list of their calendars and then clear all event entries / add new ones based on Microsoft project tasks. Heres the original tool: ...
1
vote
3answers
2k views

A list of Google APIs and a .Net Wrapper for Them

I was searching for a good whether API and came across Google Wheather API which as explained by blogs that it is kind of hidden and a Secret API but i found it very useful. Now a little more search ...

1 2