FalconSharp is an unofficial client library for accessing the beta Content API from Falcon Social.
- .NET 4.5 (Desktop / Server)
FalconSharp is available on NuGet.
Install-Package FalconSharp
If you prefer, you can compile the project yourself, you'll need:
- Visual Studio 2012 (or above)
To clone it locally click the "Clone in Windows" button above or run the following git commands.
git clone https://github.com/UmbrellaInc/FalconSharp.git FalconSharp
cd FalconSharp
.\build.cmd
List all of the social channels from the associated organisation account:
var falcon = new FalconClient("api_key");
var channels = falcon.GetChannels();
foreach (var channel in channels.Items)
{
Console.WriteLine(channel.Name);
}
Get paged social content items, (limited to 10) from a selected social channel:
var falcon = new FalconClient("api_key");
var content = falcon.GetContent("channel_name", limit: 10);
foreach (var item in content.Items)
{
Console.WriteLine("{0}: {1} - {2}", item.Network, item.Name, item.Message);
}
Have a question?
- Raise an issue on GitHub
Anyone and everyone is welcome to contribute. Please take a moment to review the guidelines for contributing.
Special thanks go to Matt Brailsford for helping to develop this library.
Copyright © 2014 Umbrella Inc and other contributors
Licensed under the MIT License
Temp falcon by Wilsonbiggs - conv. Licensed under CC BY-SA 3.0 via Wikipedia