Need tutorial for DotNetOpenAuth [closed] - c#

Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
Questions asking us to recommend or find a tool, library or favorite off-site resource are off-topic for Stack Overflow as they tend to attract opinionated answers and spam. Instead, describe the problem and what has been done so far to solve it.
Closed 9 years ago.
Improve this question
I'm creating a C# Winforms app that will allow me to edit my Gmail contacts. I'm very new to anything involving HTTP & security, so naturally I'm completely lost in the DotNetOpenAuth samples & documentation. I really wanted to be able to read a tutorial that describes how to use DotNetOpenAuth to obtain Gmail contacts.
Is there such a tutorial? I see that the samples have a GoogleConsumer object, but I'm not really sure what "consumer" means in this context. All I know about OAuth is that it allows one website to redirect to another (like Google) to login and allow that original website access to data. Since I'm doing this in a Winform app, I'm not sure how that translates.
Basically, all of this cluelessness is depressing me and I'm trying not to get burned out. Does anyone know of a tutorial I can read that will describe how to use DotNetOpenAuth to access GMail contacts? Again, I don't think the samples will help me since they seem to be using ASP.NET and there is no real sense of "here's step 1, then step 2, etc".

Check out the OAuthConsumerWpf sample. It has a tab that demonstrates an OAuth consumer that downloads Gmail contacts.

Related

would like to learn ajax can anyone tell me best pdf or online link for knowledge [closed]

Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
Questions asking us to recommend or find a book, tool, software library, tutorial or other off-site resource are off-topic for Stack Overflow as they tend to attract opinionated answers and spam. Instead, describe the problem and what has been done so far to solve it.
Closed 8 years ago.
Improve this question
hey freinds i am a new developer of ASP.NET in this world so i got little knowledge of ajax and would like to have more knowledge about that so please refer me the simplest and best knowledge source as i am new so that it should be easy for me to understand.............
thanks and regards
One of the best resources on the internet for web development is the w3school site.
It combines tutorials and references of many component's API of web technologies.
Take a tour at :
http://www.w3schools.com/
http://www.w3schools.com/js // for javascript
http://www.w3schools.com/ajax/default.ASP // for AJAX
Because of AJAX is more a method or technique based on JavaScript than an entire technology or programming language, you will not find any reference for AJAX, but you will find lots of tutorials and examples on the internet.
AJAX W3School Tutorial can be a good start.
AJAX is based on javascript, and ASP, .NET or C# can use it as it.
There is no Ajax for ASP (although it may be some quirks on IE*
interpretation of javascript).

Where is the C# google (Calendar) api documentation? [closed]

Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
Questions asking us to recommend or find a tool, library or favorite off-site resource are off-topic for Stack Overflow as they tend to attract opinionated answers and spam. Instead, describe the problem and what has been done so far to solve it.
Closed 9 years ago.
Improve this question
Where is the C# Google API documentation?
Where are the sample codes?
These are obsolete.
https://developers.google.com/gdata/client-cs
https://code.google.com/p/google-api-dotnet-client/source/browse/?repo=samples#hg/Calendar.VB.ConsoleApp
The web full of unanswered similar questions.
OK...
I'll start with saying that the GData library is old and my recommendation is to work with Google APIs library for .NET. this library is currently maintained and we just release a new version of it two weeks ago. More details are available here:
The code of the core library (which is open source) is available in our repository - https://code.google.com/p/google-api-dotnet-client/source/browse/.
All the samples are available in https://code.google.com/p/google-api-dotnet-client/source/browse/?repo=samples
Our developer guide pages contains a lot for information about how to use OAuth2, Media upload and Media Download, etc. BUT we don't have a full documentation of the API available online. I just opened a new issue in our issue tracker - https://code.google.com/p/google-api-dotnet-client/issues/detail?id=410. Feel free to add more content to it.
All the Google.Apis generated libraries (for Calendar, YouTube, Drive, Storage, etc.) are available using NuGet. You can find all our packages here https://www.nuget.org/packages?q=google.apis&prerelease=true&sortOrder=relevance. You can also find the code that generates them in our repository.
What else?
UPDATE:
The calendar API .NET docs are available in https://google-api-client-libraries.appspot.com/documentation/calendar/v3/csharp/1.8.0-rc/annotated.html.

PAYPAL C# SDK missing [closed]

Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
Questions asking us to recommend or find a tool, library or favorite off-site resource are off-topic for Stack Overflow as they tend to attract opinionated answers and spam. Instead, describe the problem and what has been done so far to solve it.
Closed 9 years ago.
Improve this question
Hi besides having spent the last three evenings trying to find out why my IPN handler has stopped wworking on all my websites (best I can work out is some file write permissions maybe) but yet to find the answer I have also yet to find the C# SDK samples for any of the payment methods Classic API, Rest API, etc. Do they exist?
I hate to say it but the more I try to read the Paypal dev site the more im considering using a different payment method for my customers, i've never wasted so much time trying to find information on something and hit the same no help link many times.
Trev.
The SDK and Samples are all available here. Please download and use them and incase you run into any issues with your integration please open issues in the respective github repos.
http://paypal.github.io

Which library/framework can be used for this specific project? [closed]

Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
Questions asking us to recommend or find a tool, library or favorite off-site resource are off-topic for Stack Overflow as they tend to attract opinionated answers and spam. Instead, describe the problem and what has been done so far to solve it.
Closed 9 years ago.
Improve this question
I have a project, but I don't know which library that I could use for this project:
Project requirement
Log into hotmail.com
Click on each email individually and take a specific link out of the email.
Copy and add the link i want into a txt file.
I've used to try Watir with Ruby, however I would like to try C++ and C# libraries this time. Plus, non-commercial please since I'm still a student. Any idea?
Thank you,
Don't think of this in terms of logging into hotmail.com and clicking. Instead, think of it as retrieving email programmatically. Hotmail supports two standard protocols for this: POP3 and Exchange. If you're programming this on Windows, and since you tagged the question C#, I suggest using C# to access the Exchange API, which is introduced here:
http://msdn.microsoft.com/en-us/library/dd637749%28v=exchg.80%29.aspx
You should be able with fairly little effort to open the emails and extract the links you want. If the Exchange API doesn't work out, just use POP3, which will be programmable from any platform.

Social network directed graph library for .NET [closed]

Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
Questions asking us to recommend or find a tool, library or favorite off-site resource are off-topic for Stack Overflow as they tend to attract opinionated answers and spam. Instead, describe the problem and what has been done so far to solve it.
Closed 8 years ago.
Improve this question
I am on a project where I have multiple users of a portal and they are connected to other users of the portal. Now we are asked to draw a “Social Network” relationship graph to see the relationships. The constraint is that this graph has to be seen in the web browser.
The graph has to be something like:
Is there any C# library or component to draw this type of graphs? We have already checked these:
http://flare.prefuse.org/
http://www.yworks.com/en/products_yfiles_practicalinfo_gallery.html
.NET graph library around?
http://quickgraph.codeplex.com/
https://graphsharp.codeplex.com/
http://research.microsoft.com/en-us/downloads/f1303e46-965f-401a-87c3-34e1331d32c5/default.aspx
http://sourceforge.net/projects/zedgraph/
But I want to check if you already used some other and your feedback.
I've used Northwoods Go.NET for many years and it has been great.
I've used Microsoft chart it's fine and free !
Maybe you can take a look to graphviz too : http://www.graphviz.org/
It can be expensive but Tom Sawyer Visualization, ActiveX edition is a solution to the problem.
Another great product I just stumbled across with HTML5 (canvas/SVG) support:
http://www.mindfusion.eu/features-netdiagram.html
They also have a pure client-side JavaScript library also with HTML5 support:
http://www.mindfusion.eu/jsdiagram.html

Categories

Resources