0

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!

Maor Oz
  • 213
  • 3
  • 9

2 Answers2

2

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.

Community
  • 1
  • 1
Paradoxis
  • 4,471
  • 7
  • 32
  • 66
1

Unfortunately, Facebook API doesn't support C# SDK now.

I think there are two ways to walk around this:

  1. Use cURL, there are some Classes to support cURL request/response
  2. 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.

linpingta
  • 2,324
  • 2
  • 18
  • 36