Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
We don’t allow questions seeking recommendations for books, tools, software libraries, and more. You can edit the question so it can be answered with facts and citations.
Closed 4 years ago.
Improve this question
I've been searching for an answer for a while, but I couldn't find any relevant libraries\documentation for C# implentation of the Facebook Ads API. I've checked Facebook's developers portal ofcourse, but they only offer PHP and Python code samples.
Any information is appreciated, thank you!
For those still looking for an answer (see this question), I recently released an unofficial SDK for C#. The code is available on GitHub here.
It implements most of the GET requests that are available by acting as a wrapper for the Facebook SDK for C#. Hope it helps anyone at all.
Unfortunately, Facebook API doesn't support C# SDK now.
I think there are two ways to walk around this:
Use cURL, there are some Classes to support cURL request/response
Use a Python/PHP interface for Facebook access, and you could use cross-language framework like Thrift to make call from your original C# program.
Wish this useful.
Related
Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
We don’t allow questions seeking recommendations for books, tools, software libraries, and more. You can edit the question so it can be answered with facts and citations.
Closed 7 years ago.
Improve this question
I'm looking for some sample code to get me started on a C# based LRS. I've read the xAPI spec from ADL's website and I've looked through all the sample code in their github repo but there just isn't anything good to start from except an example written in python/postgresql which is WAY out there for me. I'm trying to stick with C#/SQL for my implementation. Does anyone know where I can find some sample code to get started? Perhaps you'd like to collaborate with me to develop it?
Thanks for any help you can offer!
I found a few starting points (node.js, and php) but nothing complete in C# to work from. Here's what I've found so far...
Experience API Specification
Rustici Software's Repo (lots of clients but no LRS's)
PHPCan, tinCaptivate and More
Node.js and MongoDb
If you find anything new, please tack on to this!
Here you can find the .Net implementation of the API :
http://tincan.codeplex.com/ and (preferably)
http://rusticisoftware.github.io/TinCan.NET/
There is a .NET library forudpated to 1.0.0 specification
http://rusticisoftware.github.io/TinCan.NET/
All the class models are there, it is easily translated to a database schema for saving on your own end
Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
We don’t allow questions seeking recommendations for books, tools, software libraries, and more. You can edit the question so it can be answered with facts and citations.
Closed 3 years ago.
Improve this question
Is there any sort of LinqToBigTable library out there or anything that makes it link up with C#? I am looking to integrate with App Engine BigTable.
There is no direct way to interact with the AppEngine datastore from outside of an AppEngine application. Can't be done.
Your best bet for making something like this work is to expose your AppEngine datastore through a RESTful interface that talks JSON. Then, you can use Linq-to-JSON to work with the data in the fashion you desire.
The only supported languages for the Google App Engine are Python and Java (plus Go, experimentally). See here. As neither is a .net language you can't use Linq with the Google App Engine.
There is a C# client library for Cloud Bigtable, but there is not one for App Engine.
Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
We don’t allow questions seeking recommendations for books, tools, software libraries, and more. You can edit the question so it can be answered with facts and citations.
Closed 7 years ago.
Improve this question
I'm tasked with implementing a survey addition to an existing website. We have been doing this survey with SurveyMonkey, which seems excellent, but the client doesn't like that it isn't on their site. SurveyMonkey doesn't have an API that I can plug into.
I've investigated Survey(tm) on http://survey.codeplex.com/. Terrible name:
What survey tool are you using?
Oh, Survey.
Yes, what survey tool are you using?
I said Survey.
Ugh, so did I but which one?!
Spent about an hour trying to get the sample site running on my machine and decided to move on.
What are my other options? Ideally I'd like to administer the Survey on a remote site (like SurveyMonkey) and pull questions/push answers from my site to their database. I'm also open to the idea of doing this entirely in house but don't want to build something from the ground up.
I would look at SurveyGizmo. You should be able to deal with their API and handle everything remotely.
You can try LimeSurvey (http://www.limesurvey.org/) which comes with extensive API: http://manual.limesurvey.org/wiki/RemoteControl_2_API.
Usually you would install it on your own server, but hosted versions are available as well:
http://www.limesurvey.com/hosting
http://www.limeservice.com/en/
I would use Examinare.
The API is so easy to implement. Just check this out: 5 lines of code :)
https://developer.examinare.com/apidocs/addrecipient/
And they have some tutorials in there under "How to start".
Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
We don’t allow questions seeking recommendations for books, tools, software libraries, and more. You can edit the question so it can be answered with facts and citations.
Closed 6 years ago.
Improve this question
Is there a wrapper class somewhere for WIA/TWAIN functionality in a C# application?
Every search I make points to the same old 2001 CodeProject page, there has to be something new out there, right?
Maybe I'm not looking in the right place. :P
I need something really simple, like:
Image myImage = wiaWrapper.GetImageFromScanner();
Done and done.
Any guidance?
TwainDotNet
I've wrapped up the code from Thomas Scheidegger's article (CodeProject: .NET TWAIN image scanning) into a GitHub project.
I've cleaned up the API a bit, added WPF support and several people have added other improvements. I've tried to keep the API simple but it is still a bit more complicated that what you've got there.
Also this question has some other options: .NET Scanning API
Besides TwainDotNet maintained by Luke, I have recently noticed NTwain on NuGet (project page on Bitbucket).
Disclaimer: I work for Atalasoft
We publish DotTwain, which is a .NET TWAIN SDK. It's royalty-free and is used in InspectorTWAIN.com to help certify TWAIN drivers (we're members of the TWAIN working group).
Our product is a .NET Assembly that wraps interop calls.
You could also take a look at EZTwain from Dosadi, which is free. I don't know how native the .NET support is, but they have a way of calling from .NET.
As for a WIA C# wrapper, I came across ScanWIA on Codeplex. It doesn't have a whole lot of documentation. However, reading the source code might help.
Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
We don’t allow questions seeking recommendations for books, tools, software libraries, and more. You can edit the question so it can be answered with facts and citations.
Closed 8 years ago.
Improve this question
I've seen quite a few examples of XMPP clients in .Net, and I've seen quite a few servers in various languages, but I'm looking for a .Net version (opensource if possible) of a XMPP server. It doesn't particularly have to be stable, or full of features, I just want something that works a little. Reliability is not really an issue.
Here are some that I found:
http://code.google.com/p/goodwarejabber/downloads/list (a bit old...)
EDIT: Note the comment below by the author of jabber-net, noting that jabber-net is not for writing servers:
http://code.google.com/p/jabber-net/wiki/FAQ_License
As an alternative, take a look at this SO question:
Jabber-net integration
or at these libraries:
http://code.google.com/p/jabber-net/
that would allow you to create your own (if that is an option for you).
You can download and take a look at trial version of MatriX library. It contains a sample on how to implement your own server.
http://www.ag-software.de/matrix-xmpp-sdk/download/
Download the MatriX for .NET version.
You could ask the support forum for help actually
http://forum.ag-software.de/
Coversant solution : SOAPBOX Server