Jump to content

inferno885

New Members
  • Posts

    2
  • Joined

  • Last visited

Everything posted by inferno885

  1. not sure what you mean, the app I am working on needs to do it programmatically, there is a similar web app that has this functionality so I know it can be done.
  2. I want to code a script, that will automatically add a feed from my website to feedburner, here is the steps that needs to happen. step one: login to google step two: add a feed post fields = sourceUrl step three: enter in feed details post fields, name, mappedUri curl basic syntax, this is the way I think I am going to have to code this. $ch = curl_init(); curl_setopt($ch, CURLOPT_URL, $url); curl_setopt($ch, CURLOPT_RETURNTRANSFER, true); curl_setopt($ch, CURLOPT_FOLLOWLOCATION, true); curl_setopt($ch, CURLOPT_POST, 1); // Edit: prior variable $postFields should be $postfields; curl_setopt($ch, CURLOPT_POSTFIELDS, $post_fields); curl_setopt($ch, CURLOPT_SSL_VERIFYPEER, 0); $result = curl_exec($ch);
×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.