Skip to content

Commit

Permalink
Add livebook example (#38)
Browse files Browse the repository at this point in the history
* Add `ISSUE_TEMPLATE.md` (#34)

* Permit `expires_in` param when creating passwordless session (#35)

Co-authored-by: Mark Tran <[email protected]>

* Start to build behavior for HTTP client

* Add `Castable` module to define behavior for casting or transforming data

* Handle response

* Add HTTP methods to client behavior

* Add `TeslaClient` implementation

* Add comment to prod.exs to fix `mix format`

* Fix casing for `WorkOS` namespace

* Add `@deprecated` to `WorkOS.API`

* Fix test config

* Validate config

* Fix linter

* Add livebook file

---------

Co-authored-by: Jordan Mackie <[email protected]>
Co-authored-by: Mark Tran <[email protected]>
  • Loading branch information
3 people authored Oct 24, 2023
1 parent 6239bc2 commit f1449ae
Show file tree
Hide file tree
Showing 3 changed files with 31 additions and 1 deletion.
12 changes: 12 additions & 0 deletions ISSUE_TEMPLATE.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
### Environment

* Elixir version (elixir -v):
* Erlang/OTP version (erl):

### Description

### Expected Behavior

### Actual Behavior

### Steps to Reproduce
2 changes: 1 addition & 1 deletion lib/workos/passwordless/passwordless.ex
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ defmodule WorkOS.Passwordless do
def create_session(params, opts)
when is_map_key(params, :email) or is_map_key(params, :connection) do
query =
process_params(params, [:email, :connection, :redirect_uri, :state, :type], %{
process_params(params, [:email, :connection, :redirect_uri, :state, :type, :expires_in], %{
type: "MagicLink"
})

Expand Down
18 changes: 18 additions & 0 deletions workos_elixir.livemd
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
# WorkOS + Elixir

```elixir
Mix.install([
{:workos, "~> 1.0.0"},
{:kino, "~> 0.9.4"}
])
```

## Create a client

To start using WorkOS, create a `client` with the API key and client ID that you copy via the WorkOS Dashboard:

```elixir
client = WorkOS.client(api_key: System.fetch_env!("WORKOS_API_KEY"), client_id: System.fetch_env!("WORKOS_CLIENT_ID"))
```

Note that if you choose to configure WorkOS in your app config, passing a client struct is always optional.

0 comments on commit f1449ae

Please sign in to comment.