Skip to content

Releases: mweibel/facebook.ex

Version 0.15.0 - Publish photo/video

09 Oct 05:21
Compare
Choose a tag to compare
  • #44 implements photo & video publishing. Note: there's a separate graph video URL in the configuration now. Thanks @tfinnell

Version 0.14.0 - Publish to feed / bump default API version used

08 Sep 08:57
Compare
Choose a tag to compare

Version 0.13.2 - Capture hackney errors

14 Jun 16:57
Compare
Choose a tag to compare

Capture hackney errors (#40) - thanks @brinco80

Version 0.13.0 - Add stream support and lower logger level

20 Mar 06:58
Compare
Choose a tag to compare

Pagination through feeds or other bigger pages is now easily doable thanks to stream support:

stream = 
  Facebook.pageFeed(:feed, "Page Id", "Access Token", 25)
  |> Facebook.Stream.new

# get 150 posts
posts = stream |> Stream.take(150) |> Enum.to_list

Also the logging level for requests has been lowered to debug (previously info).

Thanks @brinco80 👍

Version 0.12.0 - Add objectCountAll, fix objectCount and add tests

02 Mar 06:19
Compare
Choose a tag to compare
  • Add objectCountAll, a method to get the likes and all reaction counts in one call (#34, thanks @riston)
  • Fixes objectCount which had a buggy way to get the summary out of the response (#34, thanks @riston)
  • Added integration tests against the Facebook Graph API which run on travis or can be executed locally using mix test. You need to set an app id and secret in the env before, e.g.
$ FBEX_APP_ID="1337" FBEX_APP_SECRET="abcd" mix test

Version 0.11.1 - Fix mix warnings

31 Jan 06:32
Compare
Choose a tag to compare

Version 0.11.0 - get access token from authorization code + smaller fixes

19 Jul 15:58
Compare
Choose a tag to compare
  • new API to get the access token from an authorization code
  • elixir 1.3 support (w/o warnings)
  • reduce number of dependencies

Version 0.10.0 - function to count reactions of an object

11 May 05:30
Compare
Choose a tag to compare

Implements a function which counts the reactions of an object, thanks to @jovannypcg (#25).

Version 0.9.0 - pageFeed functionality

09 May 17:39
Compare
Choose a tag to compare

Improves pageFeed functionality, thanks to @jovannypcg (#24).

Version 0.8.0 - Facebook API version 2.6 by default, Docs & Refactorings

08 May 13:09
Compare
Choose a tag to compare
  • Version 2.6 of the Facebook Graph API is now the standard
  • Facebook.set_appsecret/1 has been renamed to Facebook.setAppsecret/1
  • pageLikes/2 has been deprecated in favor of fanCount/2 which is because of the new API version