Facebook Adding Leads to CRM using Webhook - facebook-javascript-sdk

I follows https://developers.facebook.com/docs/marketing-api/guides/lead-ads/quickstart/webhooks-integration
To Get Leads Data from Facebook.
All Seem to be working using Lead Ads Testing Tool (its Adding the Form Data to CRM). i'm saving Long Term Token
as well.I can also see its showing number of Calls to app and equal number of error but i cant get there details.
So i'm not sure why its not adding the Lead to CRM.
I have Editor access to the page which has the Ads and Form and i have used my account to subscribe to App.Do the Admin of this Page need to subscribe to App?
Please let me know how to get more details of error.please see the Attach image.enter image description here

Related

Deep link to open a webpage where user can submit form which then takes him to app download page

I am completely new to branch.io. And I am trying to incorporate this into my project. I have a use case where a person will send an invite link using branch to attend a meeting. Also this link should be unique to the invitee. Once user receives a message with link he will click on the link and it should take him to a webpage(my own)/Deepview(branch.io), where he should be able to submit the form which will register him for the event. Once he finishes the registration, show him the page where there is a download app link.
So far I looked into branch.io documentation but i am confused what all features i should use. This is what i found so far. let me know if this is suitable for my use case or not.
For the first scenario of sending unique links i was thinking of using branch.io API as this is what their website suggests
Secondly on click of link taking user to some landing page. this is the part where i am very confused. I didn't find any article which says i can submit a form in Deepview. Or do i have to use my own webpage where user will submit the form and then get that information and send it to braze to create another Deeplink which will take user to app download page.
Please suggest me the features of branch.io, that I should use for my use-case
thank you for contacting Branch. You can create a unique Branch Link with the following ways based on your situation.
Use Quick Links or Ad Links from Branch Dashboard for fast link creation and easy tracking.
Use our App SDK to create and share links within your app.
Use our Web SDK to create links which help convert your web users to app users.
Use our HTTP API to programmatically create links from your server.
Use our Chrome Extension to generate links from your browser.
Also, you can set a different final destination (User landing page) in your Branch Link for your app based on your purpose. For example, you can make users who do not have your app in their device can land on either the App Store, Deepview (is a mobile web splash page, hosted by Branch), or specific webpage via your Branch Link according to your needs.
Please feel free to contact support#branch.io if you have any further questions. We are happy to help you.

Active Collab API doesn't show all reports

I'm fetching all the open reports tagged as CHECKPOINT using the collab API and it's working fine. Although, when I run a custom report for the tasks, at Active Collab website, I get more and different results than what I fetched.
What I need is to get exactly the same results shown when running a custom report. Does anyone know how can I fix it or if it's a problem with the API itself?
Open browser console and see which requests ActiveCollab's web interface is making when making fetching data to build a report. Compre this with requests that you are making and see where the differences are.
Web interface gets served by the same API as your app is, so both can be made to work the same. As long as they are making the same requests, as same users.
Solution by OP.
By creating a data filter, it shows all the reports if "include_all_projects": true! Simple is that

Firebase dynamic links long version not firing automatic analytics events

The long version of a Firebase Dynamic Link is not firing the events First-opens, clicks, re-opens...
Is that a bug or is it on purpose, and in that case why?
Background:
I cannot use the short version because I am adding programmatically a parameter in the deep link associated, hence I need the long version to accomplish it.
As a work around: how can I add programmatically a url parameter in a short Firebase dynamic link? I don't want to generate programmatically a link, I want to have only one link which has dynamic value on it (e.g. productID for a link in my product detail page)
Thanks for your help!
Need your actual dynamic link to investigate this.
At the same time I can suggest that you can create short link programmatically. See iOS docs, Android docs and overview.
EDIT:
When you say analytics what of the following you are referring to:
Data shown in Firebase Analytics (accessible from Firebase Console
in Analytics section);
Data shown in Dynamic Links Analytics (accessible from Firebase Console in Dynamic Links section);
Data shown when in list of created dynamic links you clicking on specific link;
Data retrieved using Firebase Dynamic Links Analytics API;
I feel that we should account long links clicks in 1 and 2. I did not get yet confirmation from server side folks to be sure about this. I would trust Ian's comment for now.
In 3 will be shown only short links created in Firebase console. Short links created using API will not show up in 3.
In 4 you can access data related to short links.

Instagram api sandbox

I today get Instagram api and add my website live,
I see write:
Client Status: Sandbox Mode GO LIVE
I can't click on ''GO LIVE'' button why ?
You would need to start a submission for approval to go live, though:
Feeds for websites won't be approved; these will remain in sandbox mode and be limited to 500 requests per hour and 20 images. This doesn't sound like much especially for large clients, but if you cache your responses, it's not a problem.
The main confusion is because they have made it sound like every app/feed has to be approved and out of sandbox mode to work, where as the reality is that only fully functioning apps for phones, or a widget plugin really ever need to be.
You will no longer be able to display feeds based on hashtags, only a users own photo's. By getting a client to be a sandbox user, is how you can access their feed without their login information.
Older apps/feeds will need to be updated to use the new code before June or they may stop working.
It's mainly to stop apps hammering instagram's servers for unlimited requests on any hashtag/users they like.
Here is an example of how to fetch and cache images using WordPress's 'set_transient' - you will need to use a loop to output the data.
WordPress Instagram Gist
Here is the relevant piece of information in the dev docs:
Here are some examples of scenarios that will not be approved:
To display content for a personal website. If you are a developer and you want to showcase Instagram content on a website, then you do not need to submit your app for review. By using a client in sandbox mode, you will still be able to access the last 20 media of any sandbox user that grants you permission.
One-off projects. If you are an agency building websites or other integrations, note that we don't grant permissions to clients created for one-off projects. If you are interested in building a product, platform, or widget that will be used as a service across multiple projects, then you may submit a single client_id that you can use across multiple projects.
To use a widget. If you are installing a widget for your website, then you do not need to submit for review. Some widgets may ask you to create a new client id, but you do not need to submit it for review for the widget to work. Your client can remain in sandbox mode and the widget will have access to your last 20 media.
Hope that helps clear some confusion.

Does twitter delete past profile pictures? I'm hitting API limits during development

I am creating a website using the twitter API that grabs users profile pictures quite often and am hitting API limits in development. Does twitter delete past profile pictures? I would be looking to just store the url and update there profile picture url every time they login.
Historically no but recently I've noticed old Twitter avatars sticking around longer. You might try something like I've laid out on my blog. The basic premis is you bind a callback to error event on the image with JavaScript. When it triggers you dynamically load the current image for the user and fetch the new URL on the backend.