PlayfabEx
Allows developers to interact with the playfab api.
Just need to set up a couple configuration variables.
config :playfab_ex, :title_id, YourPlayfabTitleId
config :playfab_ex, :secret_key, YourPlayfabSecretKeyYou are free to override the default implementations via
config :playfab_ex, PlayfabEx.Server.AccountManagement, MyApp.MyAccountManagementOverrideor you can override at runtime:
Application.put_env(:playfab_ex, PlayfabEx.Server.AccountManagement, MyApp.MyAccountManagementOverride)Feedback welcome.
Installation
If available in Hex, the package can be installed
by adding playfab_ex to your list of dependencies in mix.exs:
def deps do
[
{:playfab_ex, "~> 0.1.0"}
]
endDocumentation can be generated with ExDoc and published on HexDocs. Once published, the docs can be found at https://hexdocs.pm/playfab_ex.