Plugin Directory

Changeset 3311878


Ignore:
Timestamp:
06/15/2025 11:47:08 AM (10 months ago)
Author:
xssdevelopment
Message:

flatten-pdf update api endpoint

Location:
flatten-pdf
Files:
6 edited
1 copied

Legend:

Unmodified
Added
Removed
  • flatten-pdf/tags/1.0.1/includes/process-machine.php

    r3294618 r3311878  
    9292    );
    9393
    94     $response = wp_remote_post('https://api.process-machine-stage.com/solutions/solutions/wordpress/41', array(
     94    $response = wp_remote_post('https://api.cross-service-solutions.com/solutions/solutions/wordpress/41', array(
    9595        'method'    => 'POST',
    9696        'body'      => $body,
     
    127127    $id = sanitize_text_field($request['id']);
    128128
    129     $response = wp_remote_get("https://api.process-machine-stage.com/solutions/solutions/wordpress/{$id}", array(
     129    $response = wp_remote_get("https://api.cross-service-solutions.com/solutions/solutions/{$id}", array(
    130130        'headers' => array(
    131131            'Authorization' => 'Bearer ' . $api_key
  • flatten-pdf/tags/1.0.1/includes/verification.php

    r3294618 r3311878  
    1717
    1818        // API request to verify the API Key
    19         $response = wp_remote_get('https://api.process-machine-stage.com/solutions/solutions/wordpress/organization', $args);
     19        $response = wp_remote_get('https://api.cross-service-solutions.com/solutions/solutions/wordpress/organization', $args);
    2020
    2121        if (is_wp_error($response)) {
  • flatten-pdf/tags/1.0.1/readme.txt

    r3294618 r3311878  
    9292== Changelog ==
    9393
     94= 1.0.1 =
     95* Updated verify and polling API endpoints
     96
    9497= 1.0.0 =
    9598* Initial release of the Flatten PDF plugin.
  • flatten-pdf/trunk/includes/process-machine.php

    r3294618 r3311878  
    9292    );
    9393
    94     $response = wp_remote_post('https://api.process-machine-stage.com/solutions/solutions/wordpress/41', array(
     94    $response = wp_remote_post('https://api.cross-service-solutions.com/solutions/solutions/wordpress/41', array(
    9595        'method'    => 'POST',
    9696        'body'      => $body,
     
    127127    $id = sanitize_text_field($request['id']);
    128128
    129     $response = wp_remote_get("https://api.process-machine-stage.com/solutions/solutions/wordpress/{$id}", array(
     129    $response = wp_remote_get("https://api.cross-service-solutions.com/solutions/solutions/{$id}", array(
    130130        'headers' => array(
    131131            'Authorization' => 'Bearer ' . $api_key
  • flatten-pdf/trunk/includes/verification.php

    r3294618 r3311878  
    1717
    1818        // API request to verify the API Key
    19         $response = wp_remote_get('https://api.process-machine-stage.com/solutions/solutions/wordpress/organization', $args);
     19        $response = wp_remote_get('https://api.cross-service-solutions.com/solutions/solutions/wordpress/organization', $args);
    2020
    2121        if (is_wp_error($response)) {
  • flatten-pdf/trunk/readme.txt

    r3294618 r3311878  
    9292== Changelog ==
    9393
     94= 1.0.1 =
     95* Updated verify and polling API endpoints
     96
    9497= 1.0.0 =
    9598* Initial release of the Flatten PDF plugin.
Note: See TracChangeset for help on using the changeset viewer.