question-mark
Stuck on an issue?

Lightrun Answers was designed to reduce the constant googling that comes with debugging 3rd party libraries. It collects links to all the places you might be looking at while hunting down a tough bug.

And, if you’re still stuck at the end, we’re happy to hop on a call to see how we can help out.

Aweber Integration

See original GitHub issue

I am planning to use grant as middleware for all the integrations in my application. I was trying out basic OAuth 2 flow and a sample integration with Salesforce. It worked like a charm. I started facing issues when I wanted to integrate Aweber using grant. It uses OAuth 1.0a. Till step2, I am not facing any issues. On Step 3 where the grant is making a post request to access URL, my response is empty. I didn’t get an access token and access secret.

I am using hapi 16, grant-hapi 4.5.0 and yar 8.1.2.

My configuration for Aweber

{
  "config": {
    "defaults": {
      "protocol": "https",
      "host": "localhost",
      "transport": "session",
      "state": true
    },
    "aweber": {
      "request_url": "https://auth.aweber.com/1.0/oauth/request_token",
      "authorize_url": "https://auth.aweber.com/1.0/oauth/authorize",
      "access_url": "https://auth.aweber.com/1.0/oauth/access_token'",
      "oauth": 1,
      "key": "<KEY>",
      "secret": "<SECRET>",
      "callback": "/integrations/aweber/callback"
    }
  }
}

I am getting empty raw body.

Issue Analytics

  • State:closed
  • Created 4 years ago
  • Comments:6 (3 by maintainers)

github_iconTop GitHub Comments

1reaction
simovcommented, Jul 31, 2019

Thanks @binarymee I’ll add it in the next release 👍

0reactions
binarymeecommented, Jul 31, 2019

Aweber has release OAuth 2 flow now. The following custom configuration works

"aweber": {
  "authorize_url": "https://auth.aweber.com/oauth2/authorize",
  "access_url": "https://auth.aweber.com/oauth2/token",
  "oauth": 2,
  "key": "<KEY>",
  "secret": "<SECRET>",
  "scope": ["account.read list.read subscriber.read subscriber.write subscriber.read-extended"], 
  "callback": "/integrations/aweber/callback",
}
Read more comments on GitHub >

github_iconTop Results From Across the Web

App Integrations | AWeber Email Marketing
Connect your AWeber account to social media, landing pages, shopping carts and many more integrations to get the most out of your email...
Read more >
AWeber Integrations | Connect Your Apps with Zapier
Instantly connect AWeber with the apps you use everyday. AWeber integrates with 5000 other apps on Zapier - it's the easiest way to...
Read more >
AWeber Integration Add On Plugin - Paid Memberships Pro
Integrate User Registrations with AWeber. Adds members to lists based on their membership level. How it Works If Paid Memberships Pro is installed...
Read more >
AWeber Email by Combidesk - Shopify App Store
Shopify AWeber Integration - Create automated email sequences ... Synchronizes customer data of your newsletter subscribers to the AWeber list you select.
Read more >
10 Greatest AWeber Integrations for Your Website's Success
1. WPForms · 2. SeedProd · 3. OptinMonster · 4. RafflePress · 5. MemberPress · 6. Formidable Forms · 7. Zapier · 8....
Read more >

github_iconTop Related Medium Post

No results found

github_iconTop Related StackOverflow Question

No results found

github_iconTroubleshoot Live Code

Lightrun enables developers to add logs, metrics and snapshots to live code - no restarts or redeploys required.
Start Free

github_iconTop Related Reddit Thread

No results found

github_iconTop Related Hackernoon Post

No results found

github_iconTop Related Tweet

No results found

github_iconTop Related Dev.to Post

No results found

github_iconTop Related Hashnode Post

No results found