I was wondering if someone could give me a direction to my problem here.
I am trying to get my Visual Studio 2012 C# Program to read off a Google Spreadsheet, and I am having no luck on how to read the cells of a spreadsheet. I looked around, and I found something called OAuth.
However, there's no solid broken down guide to follow thoroughly. Can someone help?
Thanks!
If your problem is to authenticate via OAuth2, then this library was useful for me:
OAuth2 Social Logins - Facebook, Google, Twitter, PayPal - ASP.NET MVC C# open source library
However, I haven't found a method to establish a callback to my local IIS Express, so I use an external hosted ASP server.
Related
I wanna use Gmail API in my c# web forms application in visual studio 2015. All I find on internet is in MVC and I have no idea about it. Searching since few days but couldn't find anything simple. I can make project on google console but have no idea how to integrate it with my application. Any help would be much appreciated. Thanks in advance!!.
there is actually no difference between MVC and WebForm when you are trying to invoke some GMail API
google provides a Gmail API SDK for C#, you can reference it then your work will be much easier
https://developers.google.com/gmail/api/quickstart/dotnet
hope this can help you
I just started a projects that need to be created with C# Desktop Application using Visual Studio 2008 (.NET 3.5).
Now I really don't understand where I have to start. I just start to "googling" and found that there tools C# FACEBOOK SDK. But after I read more, now it's not supported from Facebook. So, please anyone can help me.
MY GOAL : To read facebook timeline of user from a desktop application.
Can I user any other SDK that supported ?
Or maybe can I use Facebook PHP SDK ?
Your help really appreciated.
Thankyou
You can use Facebook SDK. Its possible to use, connect, post, read informations and anothers tasks.
To start, have some information at web:
Open NuGet manager at Visual Studio and ask for Facebook SDK.
Read Facebook Developers Starters Guide: https://developers.facebook.com/
When we start a FB app, a token is necessary. Read about this at: https://developers.facebook.com/docs/apps/register
I hope this helps to start .
I am looking to write an auth service using Web Api, and SQL Server for authenticating and authorizing users on my .net site, but ios and Android apps as well. I'm speculating that basic authentication over SSL is the easiest way to go, but I'm pretty new to this whole section of .net. I'm having trouble finding some clear tutorials that explain how to write such a service. Can anyone point me to some resources on how to do this? I'd appreciate it.
I think you need to look OAuth implementation in .NET.
Here is a video to give you some background on Web API security.
I also suggest getting a trial subscription to Pluralsight training and check out the courses on Web API security.
You may want to target the latest release of Web API 2.0 from Microsoft, it has the most features you'll need.
I think this might be useful for you:
http://www.asp.net/web-api/overview/security/authentication-and-authorization-in-aspnet-web-api
I am about to emabark on a project that will use Azure and Facebook C# SDK. I was just wondering when will the documentation be available on the C# SDK website? I have no idea where to begin and would love some documentation/tutorials.
Thanks,
Rhonda
As you need some pointer about where to begin, I sure can give your some pointers but get ready for a time of adventure because you sure going to hit some hardtime. What you really need is to develop your project in two steps:
Create an ASP.NET (MVC?) Web application using FaceBook C# SDK
Convert this ASP.NET application to Web Role to deploy to Windows Azure
To start your development for 1) I would suggest following this Documentation:
http://csharpsdk.org/docs/web/
http://csharpsdk.org/docs/web/ajax-requests
I would also suggest to look SO for more assistance during your development when you hit errors as there are lots of solution discussed.
Finally when you come to 2) you can follow how Deploy asp.net application on windows azure..?
This documentation is in progress as of Feb. 11, 2012. We are working
on big improvements for the coming weeks.
Source: http://csharpsdk.org/docs/azure/
So yea, that's your answer.
I'm busy integrating google webmaster tools into my mvc2 project. I downloaded the google Data API SDK here. But i can't figure out how to connect to the api and retrieve information from it. I can't find any assemblies in the SDK i can use in my testproject to connect to the webmaster tools api.
If anybody already tried or has information about this, please share the knowledge. Examples, anything is welcome.
My ultimate plan is to integrate it into a webapplication i'm working so i can communicate with Google Webmaster Tools to get information about keywords, sitemaps and so on.
Since it took a while for me to get an answer here i started a new topic here This gave me a good solution to work on.