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.
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've been looking through tons of forum posts and documentation, but I can not find out how to authenticate/launch an app published through a Citrix 7.6 Storefront interface programmatically (preferably in C#). I'm extremely new to working with Citrix so any help would be appreciated.
At my company, we currently have a launcher like I described that works with Citrix 6.5 Web Interface, but we get generic errors when we attempt to use the same technique with 7.6 Storefront.
Can anyone provide me with a sample application doing what I want or point me towards an appropriate SDK/Documentation resource? I would be EXCEPTIONALLY grateful for any assistance!
Thanks!
Very very old post but since I was struggling as well, here's some pointers that works well with StoreFront 3.5.
First of all, the following code works with the StoreFront web api and basic HTTP authentication. You must first do this on the StoreFront server to enabled the authentication with the following code:
Open Citrix StoreFront
Click on "Manage Authentication Method"
Check the box "Basic HTTP"
Here's a class that you can drop in that will work given that you install the following nuget packages:
RestSharp
JSON.NET
WebApi C# Sample
(Sorry I wasn't able to past the code directly here because of formatting)
The sample can be copy/pasted into a console application. I have written and cleaned up the code such that anyone can understand and use it.
if you are using the Receiver 4.0 you can use the Receivers -qlaunch parameter.
See the Citrix dokumentation https://support.citrix.com/article/CTX200337
SelfService.exe –qlaunch “appname” is the command and you can use the process start command in c# to launch the application by name.
I hope this will also help as a simple solution.
Regards Bernd
Is it possible to develop a website in ASP.NET with C# as the coding Language and MySQL as the database and then deploy the same on Linux server?
I am talking about a full frontal website like forums or discussion board.
Thanks.
It's possible using Mono.
Please have a look on the Homepage for further details.
You could always try Mono's implementation of ASP.NET and C#. Personally I've had no issues with it but I haven't tried doing something that complex but from my experience it's pretty close to the standard .NET C#.
Can i create an application that lives inside facebook using .net ? if so what do i need ?
Try looking here - it's a Facebook development kit provided by Microsoft, complete with code samples.
Yes you can ,your start will be searching for the facebook api (for .net) then download it and learn how to use it.
thats is.
http://www.codeplex.com/FacebookNET
I've created a VS.NET Starter Kit (C#) for the Facebook Developer Toolkit (see codeplex) here.