我想知道你们是否可以提供帮助。我正在尝试将Gravity表单与Eloqua CRM集成。我已经尝试了第三方整合'插件,我也尝试在我的functions.php文件中添加提交功能后的gf。但是,我无法让这个工作。我的代码如下。我在eloqua'中输入了我的表格的网址。 (https://s1913652004.t.eloqua.com/e/f2)还有一个表单ID,但我无法在任何地方看到它。
add_action( 'gform_after_submission_1', 'post_to_third_party', 10, 2 ); function post_to_third_party( $entry, $form ) {
$post_url = 'https://s1913652004.t.eloqua.com/e/f2';
$body = array(
'first_name' => rgar( $entry, '1.3' ),
'last_name' => rgar( $entry, '1.6' ),
'email' => rgar( $entry, '2' ),
'country' => rgar( $entry, '3' ),
);
GFCommon::log_debug( 'gform_after_submission_1: body => ' . print_r( $body, true ) );
$request = new WP_Http();`enter code here`
$response = $request->post( $post_url, array( 'body' => $body ) );
GFCommon::log_debug( 'gform_after_submission_1: response => ' . print_r( $response, true ) );