在facebook ads API中搜索产品

时间:2018-12-24 10:21:54

标签: facebook facebook-graph-api facebook-apps facebook-exception

我正在使用Facebook Ads API,却一stuck不振。我需要在facebook产品目录中添加搜索过滤器,并在facebook资源管理器中进行了尝试,但是它不起作用,我使用了此URL $config = Array( 'protocol' => 'smtp', 'smtp_host' => 'ssl://smtp.googlemail.com', 'smtp_port' => 465, 'smtp_user' => 'your@mail.com', // change it to yours 'smtp_pass' => 'yourpassword', // change it to yours 'mailtype' => 'html',// it can be text or html 'wordwrap' => TRUE, 'newline' => "\r\n", 'charset' => 'utf-8', ); $this->load->library('email'); $this->email->initialize($config); $this->email->from('your@mail.com',"Rtlx Team"); $this->email->to('receiver@mail.com'); $this->email->subject('Subject'); $this->email->message('Sample message'); if (!$this->email->send()) { show_error($this->email->print_debugger()); } else { echo 'Your e-mail has been sent!'; }

enter image description here

任何帮助将不胜感激。谢谢。

0 个答案:

没有答案