Releases: mweibel/facebook.ex
Releases · mweibel/facebook.ex
Version 0.15.0 - Publish photo/video
Version 0.14.0 - Publish to feed / bump default API version used
- #43 implements a function to publish to feed, thanks @tfinnell
- #42 bumps default Facebook API version to 2.9, thanks @richard-kellermeyer
Version 0.13.2 - Capture hackney errors
Version 0.13.0 - Add stream support and lower logger level
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
- 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
Fix mix warnings
Version 0.11.0 - get access token from authorization code + smaller fixes
- 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
Implements a function which counts the reactions of an object, thanks to @jovannypcg (#25).
Version 0.9.0 - pageFeed functionality
Improves pageFeed functionality, thanks to @jovannypcg (#24).
Version 0.8.0 - Facebook API version 2.6 by default, Docs & Refactorings
- Version 2.6 of the Facebook Graph API is now the standard
Facebook.set_appsecret/1
has been renamed toFacebook.setAppsecret/1
pageLikes/2
has been deprecated in favor offanCount/2
which is because of the new API version