Retrieving data from Facebook API using F #

I have used C # with Newtonsoft.Json library to collect data from Facebook. This works well for me, but now I would like to see if I can do something similar with F # instead of C #.

I note that F # 3.0 (now in beta) supports the type of providers that have the potential to access loosely structured data, for example Facebook is much easier.

Does anyone know of an F # example showing how to get Facebook data?

+3


source to share


1 answer


Since you mentioned the type providers: FSharpx has a JSON type provider, but I think it currently only works with local files, not JSON retrieved from an HTTP request. You can join the project and help us with this!



+2


source







All Articles