Kyle Clarke

Results 5 comments of Kyle Clarke

Any update on this? I'm wanting to get the max results so I know whether to page for more results. With the `DataService`, looks like I need to get the...

Locally I need to connect to the new Instagram graph flow too. As documented here https://developers.facebook.com/docs/instagram-basic-display-api/getting-started So I have duplicated the existing provider and made changes as follows. Note that...

Hey @yelskiy, you're not completely blocked, you can use the code above and place into your project. eg ``` import ( "github.com/markbates/goth" "gitlab.com/kylehqcom/***/***/lib/auth/provider/instagram" ) instagramProvider := instagram.New(instagramClientID, instagramClientSecret, instagramCallbackURL) goth.UseProviders(instagramProvider)...

I ended up using the raw formatted/styled html and adding my own bindings. I needed to handle on:submit for an embedded form and binding on the close & key event...

Addendum/FYI's ``` /** * Usage: * import { clickOutsideAction } from "$lib/ui/clickOutside"; let hidden = false; function handleClickOutside() { hidden = !hidden; } */ import type { ActionReturn } from...