I'm creating a not-web application using C# and I would like to use Google translate API there. Is there a way to do this?
Thank you for your help!
Yes, you can do that. Here is an example.
Related
I am trying to access to MapQuest via a Winforms C# application.
I can't find any help on how I can make a WebRequest (via JSON, XML or Text). How do I embed my Application Key in that request? Or do I have to perform a login-request or what?
Has anyone perhaps used this API in C#, C++ or Java? I could use some start-help as I can't find any infos on how to do this.
There was a C# .Net API but it is deprecated now and they recommend using WebRequests.
I hope someone can help me! If you need more information just ask. Thanks!
Ok. I thought I would fix this rather easy, but I'm not getting anything to work for some reason. What I want to do is simple; I want to create a web part displaying the latest tweets from a specific user. I'm coding C#.
I found a great post here but it's using php.
Can anyone help me to perform this simple task?
You can find alot examples over internet
Web:
http://www.microsoft.com/web/post/learning-the-basics-of-using-the-twitter-api-in-aspnet-web-pages-with-razor-syntax
Console:
http://www.d80.co.uk/post/2011/02/13/A-Simple-Twitter-Client-in-C-with-OAUTH-using-TweetSharp.aspx
:)
I'm trying to build an application in .net, and using google alerts (the feeds part).
Right now i am searching for API, or some way to interact with google alerts, but no results so far.
It will be very good if anyone can provide me with that google alerts API.
OR
A way to interact with it.
Thanks in advance,
-Sea
If you set up your alert set the delivery method to feed, this will create a standard RSS feed which you can consume using an XmlTextReader or XmlDocument
There is a .net implementation of an api for google alerts here: http://coders11.com/googlealertsapi
I've used this before and its easy to use and works great
http://frickingnutz.com/?q=node/51
There is Google Alert API for C#:
https://github.com/oscar811/GoogleAlertAPI
Ive seen people using the google maps interface for their own maps. Does anyone know if this is legal and how to do this?
Thanks in advance!
This is perfectly legal. Google even exposes an API for this.
You can also find a tutorial here: link.
It is legal (and encouraged!)
The main limitation is that the application using Google Maps must be freely available. If you want to use them in a for-pay application, you have to pay for a license. See the collection of FAQs following on from here: http://code.google.com/apis/maps/faq.html#tos_commercial
Google code playground is a good place to start learning
http://code.google.com/apis/ajax/playground/#map_simple_v3
hope you guys could share some light with me..are you guys aware of lightscribe? i have the sdk document and am tasked to integrate LightScribe functionality with c#.can anyone of you guide me or mayb have some examples to show me?
I haven't used the lightscribe api myself. But it appears to be a C++ API, what you will need to do is write a C# wrapper around it (using p/invoke)
A quick google search also turns up this wrapper library that someone has already done, have a look at the source in that and you will see the techniques used.