mirror of
https://github.com/miniflux/v2.git
synced 2025-08-01 17:38:37 +00:00
Offer the possibility to set Pocket Consumer Key as environment variable
This commit is contained in:
parent
44decae557
commit
b270159aae
10 changed files with 31 additions and 19 deletions
|
@ -33,7 +33,7 @@ func (c *Controller) PocketAuthorize(w http.ResponseWriter, r *http.Request) {
|
|||
}
|
||||
|
||||
sess := session.New(c.store, ctx)
|
||||
connector := pocket.NewConnector(integration.PocketConsumerKey)
|
||||
connector := pocket.NewConnector(c.cfg.PocketConsumerKey(integration.PocketConsumerKey))
|
||||
redirectURL := c.cfg.BaseURL() + route.Path(c.router, "pocketCallback")
|
||||
requestToken, err := connector.RequestToken(redirectURL)
|
||||
if err != nil {
|
||||
|
@ -64,7 +64,7 @@ func (c *Controller) PocketCallback(w http.ResponseWriter, r *http.Request) {
|
|||
return
|
||||
}
|
||||
|
||||
connector := pocket.NewConnector(integration.PocketConsumerKey)
|
||||
connector := pocket.NewConnector(c.cfg.PocketConsumerKey(integration.PocketConsumerKey))
|
||||
accessToken, err := connector.AccessToken(ctx.PocketRequestToken())
|
||||
if err != nil {
|
||||
logger.Error("[Pocket:Callback] %v", err)
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue