Skip to content

Commit

Permalink
Support ACF download API V2
Browse files Browse the repository at this point in the history
This new API (used in the account section of the website) allows one to download older versions of ACF Pro.
  • Loading branch information
mcaskill committed Jul 13, 2024
1 parent fd9cb3b commit e24a9dd
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions src/Plugins/AcfPro.php
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,6 @@ class AcfPro extends AbstractPlugin {
public function getDownloadUrl() {
$api_query = array(
'p' => 'pro',
'a' => 'download',
'k' => getenv( 'ACF_PRO_KEY' ),
);

Expand All @@ -29,7 +28,7 @@ public function getDownloadUrl() {
$api_query['t'] = $this->version;
}

$api_url = 'https://connect.advancedcustomfields.com/index.php';
$api_url = 'https://connect.advancedcustomfields.com/v2/plugins/download';

return $api_url . '?' . http_build_query( $api_query, '', '&' );
}
Expand Down

0 comments on commit e24a9dd

Please sign in to comment.