Questions tagged [aweber]

AWeber's API is a REST and OAuth 1.0 based API that allows developers to construct their own applications for displaying and managing AWeber customer accounts.

AWeber is a web-based service provider of email marketing software that handles editing messages, delivery, analytics, and collection of mailing list subscribers.

AWeber's API is a REST-based API that allows developers to construct their own applications for displaying and managing AWeber customer accounts. The API uses OAuth 1.0a for authentication and returns all requested data in JSON format.

AWeber provides several API client libraries, supporting PHP, Ruby, and Python.

103 questions
10
votes
2 answers

How can I connect Aweber to my Rails app using OAuth?

I'm trying to integrate my Rails app with Aweber via OAuth, using the official aweber gem. If I follow their flow in the Rails console, I can get an access token, no problems: oauth = AWeber::OAuth.new(ENV["AWEBER_CONSUMER_KEY"],…
GMA
  • 5,816
  • 6
  • 51
  • 80
7
votes
1 answer

Wordpress 404 error when adding /?name=someonesname at the end of my URL

I am trying to pass informations from aweber to my thank you page, but for some reasons, only the name parameter doesn't work, it makes a 404 error. Every other URL parameters works perfectly ( for exemple ?email=yourmail&birthday=02/05/1982 ) but…
Mkz
  • 71
  • 1
  • 3
6
votes
2 answers

Invalid signature. Expected signature base string, JAVA

We are using this piece of code to send request on aweber via oAuth long unixTime = System.currentTimeMillis() / 1000L; OAuthRequest request1 = new OAuthRequest(Verb.GET,"https://api.aweber.com/1.0/accounts/1111/lists/1111/subscribers",…
Renu Thakur
  • 551
  • 11
  • 35
4
votes
0 answers

Aweber Java Api

My goal is to create an aweber app that adds users to an email list I already have. I currently have code that uses Oauth to get a token but this method also requires an aweber account users to manually write their credentials in order to grant the…
4
votes
4 answers

What are the Aweber API Variables $account_id and $list_id?

You can check here: https://labs.aweber.com/docs/code_samples/subs/create The script to add a new subscriber to the list via api requires those two pieces info...only I cannot figure out for the life of me what those two variables are!! I've beaten…
Jared Smith
  • 283
  • 4
  • 11
3
votes
1 answer

Troubleshooting AWeber API "Method requires access to Subscriber information" error

I'm trying to retrieve a specific subscriber from an AWeber list using the PHP SDK. Code: $subscribers = $account->loadFromUrl("/accounts/$account->id/lists/$list_id/subscribers"); var_dump($subscribers->find(array('email' => $email))); exit; The…
2
votes
2 answers

Use Aweber API to create a list from the website

After spending a lot of time into the Aweber documentation, i coudn't find if i can create a subscribers list from the API. Is this possible, and if it is, how? Thanks!
GabrielCol
  • 181
  • 12
2
votes
2 answers

i am creating application where submitting from to aweber but i also need input fields to store on db

I am creating an application where submitting from to aweber but I also need input fields to store on db. But I also need that inputs to store inv…
2
votes
2 answers

Send Message from Aweber API

How can we send message to all my subscribers in aweber list. https://labs.aweber.com/snippets/authentication but didn't find anything relevant to send message to subscribers. Is there any option from API to send messages or broadcast a message…
Rockstar
  • 191
  • 1
  • 2
  • 21
2
votes
1 answer

Integrate Aweber into a Contact form or Contact Form 7 (Wordpress)

I have a contact form with name, email, phone and message. This can work as a regular contact form submitting to my email adreess. But i also want that name, email, and phone to be passed out to my aweber account. Is that possible using contact form…
2
votes
1 answer

can't delete subscriber aweber api php wrapper

As expected on documentation for delete subscriber but its not working require_once('aweber_api/aweber_api.php'); $consumerKey = '***'; # put your credentials here $consumerSecret = '***'; # put your credentials here $accessKey = '***'; #…
idontknowhow
  • 1,507
  • 5
  • 17
  • 23
2
votes
1 answer

Aweber C# Api unauthorized - AccessToken key is invalid

I am having an issue with the Aweber C# api from: http://aweber.codeplex.com/ I am getting an unauthorized response from the following code. I was wondering if someone could help me see what I am missing please? String consumerKey = "####"; String…
DiscoDamo
  • 59
  • 7
2
votes
1 answer

Integrate Aweber in Android?

How to integrate Aweber in android ,i research lot but there is no source code for this, so please help and should be appreciated
Vicky
  • 21
  • 2
2
votes
1 answer

AWeber API: subscribers->create() not working as expected in script

The extent to which the AWeber API is not clearly documented cannot be underscored enough (nor do their example scripts work very well). The below script was written so I could subscribe one user to multiple lists selected from a form. Anyway, this…
yoyodyne
  • 55
  • 1
  • 7
2
votes
1 answer

Automatic AWeber Authentication? How do I access one user's data programmatically without them having to log in?

How can I use the AWeber API to automatically check whether an email address exists on a given user's list? The AWeber paradigm is baffling to me and their docs are poor. Essentially, what you get is the ability to put the AWeber login form on…
Everett
  • 8,746
  • 5
  • 35
  • 49
1
2 3 4 5 6 7