This is the public repository of Post Promoter Pro, the most effective way to share your WordPress content across your Twitter, Facebook, and LinkedIn accounts.
Post Promoter Pro is a commercial plugin, available at PostPromoterPro.com. This public repository is here to allow collaboration, bug reporting, and transparency into its development and direction.
If you are a user looking for Technical Support, please use the 'Support' section of the website. This repository is for development related issues and tracking only. If you request support in this arena, you will be asked to visit the following page, and provide your license key.
https://postpromoterpro.com/support/
Since Post Promoter Pro is a commercial plugin, a license key is necessary for support and automatic upgrades. It also requires a key to retrieve the social network application keys and secrets. These are applications specific to our product and we provide them to license holders in order to make the Twitter, Facebook, LinkedIn, and Bitly sign in process as streamlined as possible. To purchase one you can visit the Post Promoter Pro Website
If, however, you wish to contribute to the codebase without a license, you can do so by using local social media keys, for applications you create yourself. In order to do this you must visit each social media's "developer" area and configure an application.
To set up local keys, do the following:
-
Set up applications with social media services
-
Copy the
ppp-social-tokens-sample.json
file (in the root of the repo) towp-content/uploads/ppp/
and rename itppp-social-tokens.json
-
Place your tokens in the appropriate places within the
.json
file above -
Authenticate your social media accounts
-
Code amazing things
-
Submit pull requests
If you are running Nginx, you will need to put this into your server configuration to prevent direct access to the file.
location ~* ppp-social-tokens.json$ {
deny all;
access_log off;
log_not_found off;
}