Best answer

How do I extract data from a zip connected to Facebook?

  • 25 October 2021
  • 3 replies
  • 68 views

I have a system made in PHP and JS as I extract the data that the zap sends me and show it in a form, for now I can send only data to my zap with the following syntax:

<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.5.1/jquery.min.js"></script>

<script type = "text/javascript">

var name = "pruebas 23 ";
            

 data = "name="+name;
$.ajax({
   
    type: "GET",
    url:"https://hooks.zapier.com/hooks/catch/11134459/bhhztgu/",
    data: data,
    dataType:"json",
    
    success: function (msg) {
        console.log(msg);
        console.log(data);
       
    },

    beforeSend: function () {
        
    }


});

</script>

 

 

icon

Best answer by Troy Tessalone 25 October 2021, 18:33

View original

This post has been closed for comments. Please create a new post if you need help or have a question about this topic.

3 replies

Userlevel 7
Badge +14

Hi @RobertoDenis 

Can you please clarify your question? Thanks.

 

I want to extract data from a zip that is connected to facebook, I want to show the data that the zap sends me to a system that I have

Userlevel 7
Badge +14

@RobertoDenis 

What Facebook Zap app are you using?

Check out the available Zap app from Facebook: https://zapier.com/apps/categories/facebook

Each app has a profile page that lists the available triggers/actions.

 

If you are using API requests those can be used in these apps.

Code: https://zapier.com/apps/code/help

Webhook: https://zapier.com/apps/webhook/integrations#triggers-and-actions