0

私のページで gform_after_submission が呼び出されていますが、$entry および $form オブジェクトが null です。それが起こる理由はありますか?ログの出力に基づいて、コードが実行されることはわかっていますが、$entry 引数が null である理由がわかりません。

add_action('gform_after_submission_2', 'post_to_third_party', 10, 2);
function post_to_third_party($entry, $form) {

   error_log("Posting comments form");

   $post_url = 'https://api.club-os.com/prospects?clubLocationId=686';
   $body = array(
    'first_name' => $entry['7.3'], 
    'last_name' => $entry['7.6'], 
    'email' => $entry['6'],
'mobilePhone' => $entry['8']
   ); 

   error_log('Before Post to' . $post_url);

   $args = array(
'headers' => array('Authorization' => 'Basic ' . base64_encode( 'username' . ':' . 'password' )),
'body' => $body,
    'sslverify' => false
    );  

   foreach ($body as $key => $value) {
      error_log($value . " in " . $key . ", ");
   }

   $request = new WP_Http();
   $response = $request->post($post_url, $args);

}
4

1 に答える 1