芝麻web文件管理V1.00
编辑当前文件:/home/royashxg/www/wp-content/plugins/fluentformpro/src/Integrations/ConvertKit/API.php
apiKey = $apiKey; $this->apiSecret = $apiSecret; } public function default_options() { return array( 'api_key' => $this->apiKey ); } public function make_request( $action, $options = array(), $method = 'GET' ) { /* Build request options string. */ $request_options = $this->default_options(); $request_options = wp_parse_args($options, $request_options); $options_string = http_build_query( $request_options ); /* Execute request based on method. */ switch ( $method ) { case 'POST': $args = array( 'body' => json_encode($options), 'headers' => [ 'Accept' => 'application/json', 'Content-Type' => 'application/json' ] ); $response = wp_remote_post( $this->apiUrl.$action.'?api_key='.$this->apiKey, $args ); break; case 'GET': /* Build request URL. */ $request_url = $this->apiUrl . $action.'?' . $options_string; $response = wp_remote_get( $request_url ); break; } /* If WP_Error, die. Otherwise, return decoded JSON. */ if ( is_wp_error( $response ) ) { return [ 'error' => 'API_Error', 'message' => $response->get_error_message() ]; } else { return json_decode( $response['body'], true ); } } /** * Test the provided API credentials. * * @access public * @return bool */ public function auth_test() { return $this->make_request('forms', [], 'GET'); } public function subscribe($formId, $data) { $response = $this->make_request('forms/'.$formId.'/subscribe', $data, 'POST'); if(!empty($response['error'])) { return new \WP_Error('api_error', $response['message']); } return $response['subscription']; } /** * Get all Forms in the system. * * @access public * @return array */ public function getLists() { $response = $this->make_request( 'forms', array(), 'GET' ); if(empty($response['error'])) { return $response['forms']; } return []; } /** * Get all Tags in the system. * * @access public * @return array */ public function getTags() { $response = $this->make_request( 'tags', array(), 'GET' ); if(empty($response['error'])) { return $response['tags']; } return false; } public function getCustomFields() { $response = $this->make_request( 'custom_fields', array(), 'GET' ); if(empty($response['error'])) { return $response['custom_fields']; } return false; } }