https://github.com/activecampaign/example-recent_campaigns_rss
Recent Campaigns formatted as RSS.
https://github.com/activecampaign/example-recent_campaigns_rss
Last synced: 12 months ago
JSON representation
Recent Campaigns formatted as RSS.
- Host: GitHub
- URL: https://github.com/activecampaign/example-recent_campaigns_rss
- Owner: ActiveCampaign
- Created: 2013-01-30T14:59:45.000Z (over 13 years ago)
- Default Branch: master
- Last Pushed: 2014-11-27T16:30:54.000Z (over 11 years ago)
- Last Synced: 2025-01-05T13:11:11.619Z (over 1 year ago)
- Language: PHP
- Size: 734 KB
- Stars: 2
- Watchers: 10
- Forks: 2
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
ActiveCampaign Custom API Script: Fetch recent campaigns and format it as an RSS feed, with each item showing the message HTML and a link to the web copy of the campaign.
## Requirements
1. [Our PHP API library](https://github.com/ActiveCampaign/activecampaign-api-php)
2. A web server where you can run PHP code
## Installation and Usage
You can install **example-recent_campaigns_rss** by downloading (or cloning) the source.
Input your ActiveCampaign URL and API Key. Example below:
define("ACTIVECAMPAIGN_URL", "YOUR ACTIVECAMPAIGN URL");
define("ACTIVECAMPAIGN_API_KEY", "YOUR ACTIVECAMPAIGN API KEY");
Make sure the path to the PHP library is correct:
require_once("../../activecampaign-api-php/includes/ActiveCampaign.class.php");
To specify what list the script uses (to find recent campaigns from), set the `listid` parameter in the URL:
`http://example.com/script.php?listid=10`
(If you don't set the `listid` parameter, it will try using list ID `1` by default.)
Copy the URL of the script to load it in an RSS reader.
## Documentation and Links
* [Full API documentation](http://activecampaign.com/api)
## Reporting Issues
We'd love to help if you have questions or problems. Report issues using the [Github Issue Tracker](https://github.com/ActiveCampaign/example-recent_campaigns_rss/issues) or email help@activecampaign.com.