I know it's possible to target ads geographically based on zip codes and/or the radius around a given coordinate. Is it somehow possible to target ads geographically based on a shapefile (census Canada for example) or do we have to essentially "build" the shapefile using a combination of zip codes and radius inclusions / exclusions?
Facebook Audience API - Targeting Audiences using Shapefiles
252 Views Asked by Jenn At
1
There are 1 best solutions below
Related Questions in FACEBOOK
- Facebook Post Images from local system on own Page
- Provide an archipelago name that humans cannot utter
- How can I look this email address
- Not getting all leads from Meta/Facebook using webhook for page leadgens
- Unsupported post request when trying to create a custom audience via the endpoint https://graph.facebook.com/lapi-version), (custom-audience-id/users)
- Java resized JPEG seems to be invalid format for Facebook?
- How to implement facebook pixel in flutter in 2024 any example?
- Need WhatsApp Data Backup from Api
- Facebook login via JS-SDK via OAuth will get stuck half-way
- Short time token with the Graph API and Facebook login through the iOS SDK
- Facing the "Messaging may be unavailable" error - WhatsApp Cloud API
- Facebook Graph API - Story endpoint does not return all active stories
- Javascript / Dynamically append text element above embedded facebook posts
- When I post text with media on Facebook, the text does not show
- How to search a list of groups using facebook APIs
Related Questions in FACEBOOK-ADS-API
- Getting Error while trying to fetch Facebook Ads data using OAuth2 in php (laravel)
- I can't set the custom conversion event to be active in Meta Pixel. what did i do wrong?
- Cant create iOS ads
- Facebook ads for mobile iOS and Android application conversion tracking
- What is the difference between the access token generated in Facebook Events Manager and the "extend Access Token" in Graph API Tool?
- How to send Google Ads cookies from server to server container in GTM?
- Unable to get custom label from page conversations api
- Share mobile app with advertisers via Facebook Graph API
- FB API parameter error: The parameter ad_reached_countries is required
- Facebook Marketing API HTTP POST error - The provided image file is invalid. Please check your image path again
- Want to advertise App on FB but App at risk of restriction for violation I can't fix
- Meta Ad Library API does not return any ad for specefic page
- Enable/Disable Advertiser Tracking for Meta in ionic capacitor application?
- Unsupported post request. Object with ID 'act_XXXX' does not exist, cannot be loaded due to missing permissions, or does not support this operation
- App installation campaign (Android SDK) - Facebook
Related Questions in FACEBOOK-AUDIENCE-NETWORK
- Flutter - Facebook Audience Network Banner Ad Not loading, While Interestitial Ad Working fine
- How do I get my app id in Meta Audience Network?
- Will activating FAN break existing admob ads?
- Added FB mediation with admob but no ad's show
- Swift Show Meta Audience Network Native Ad
- Meta audience network test ad setup not working in ios
- Facebook ads not showing in only samsung devices. Flutter Android
- iOS app with FBAudienceNetwork on AdMob mediation: error "No such module FBAudienceNetwork"
- Isn't supposed to have higher win rate with meta audience than with applovin max?
- Flutter - Why am I only seeing a white container instead of a native banner test ad on my iOS device?
- Flutter : Null error message for Facebook Audience Network banner ad in iOS using Flutter
- Problem implementing Native Ads using 'react-native-fbads:v7.0.5' library
- I am getting the crash on the FBAudienceNetwork.xcframework with the iOS version 15.6.1
- Facebook Audience Network - Low impressions (200) on iOS but good in Android 20K
- Could not find any matches for com.facebook.android:audience-network-sdk:6.+
Related Questions in FACEBOOK-CUSTOM-AUDIENCE
- Is there a API to understand if the Custom Audience is populated or not?
- Uploading data to a Custom dimension META
- Facebook ads custom audience Data is missing or does not match schema error
- Facebook custom audiences error: "There was a problem replacing your customer list Custom Audience. Try again later." - Marketing API
- Facebook graph api website custom audience rules not created giving error
- How to filter Facebook custom audience GET request by data_source type and subtype via filtering parameter
- Facebook custom audience PHP users replace
- For ad retargeting, how does Facebook match people who visit your website using a mobile browser with people who have Facebook accounts?
- Getting empty object when sharing lookalike audience with adaccount - Facebook API
- Facebook Marketing API - lookalike audience creation - Can't create a duplicate lookalike
- Google Custom Audience/Similar Audience API
- Using facebook external_id with pixel and custom audience
- Facebook throwing strange error when attempting to create custom audience with sandbox ad account
- Facebook ads API // passing fbp parameters to build the target Custom Audiences
- Facebook - Custom audience deleting users issues
Trending Questions
- UIImageView Frame Doesn't Reflect Constraints
- Is it possible to use adb commands to click on a view by finding its ID?
- How to create a new web character symbol recognizable by html/javascript?
- Why isn't my CSS3 animation smooth in Google Chrome (but very smooth on other browsers)?
- Heap Gives Page Fault
- Connect ffmpeg to Visual Studio 2008
- Both Object- and ValueAnimator jumps when Duration is set above API LvL 24
- How to avoid default initialization of objects in std::vector?
- second argument of the command line arguments in a format other than char** argv or char* argv[]
- How to improve efficiency of algorithm which generates next lexicographic permutation?
- Navigating to the another actvity app getting crash in android
- How to read the particular message format in android and store in sqlite database?
- Resetting inventory status after order is cancelled
- Efficiently compute powers of X in SSE/AVX
- Insert into an external database using ajax and php : POST 500 (Internal Server Error)
Popular # Hahtags
Popular Questions
- How do I undo the most recent local commits in Git?
- How can I remove a specific item from an array in JavaScript?
- How do I delete a Git branch locally and remotely?
- Find all files containing a specific text (string) on Linux?
- How do I revert a Git repository to a previous commit?
- How do I create an HTML button that acts like a link?
- How do I check out a remote Git branch?
- How do I force "git pull" to overwrite local files?
- How do I list all files of a directory?
- How to check whether a string contains a substring in JavaScript?
- How do I redirect to another webpage?
- How can I iterate over rows in a Pandas DataFrame?
- How do I convert a String to an int in Java?
- Does Python have a string 'contains' substring method?
- How do I check if a string contains a specific word?
It seems the only real "shapes" for a target audience is either providing a country, state (or province if in Canada), congressional district and some zipcodes:
Canada province:
US Congressional District
US Zipcode
However, some zipcodes map to a simple point so you need to fallback to a coordinate and radius.
I guess the only way to create an audience for a given polygon is to try and fill its surface with circles, considering those circles have a minimum radius, so it will always be just an approximation.
There are examples of circle-packing around. I repaired an old gist (https://gist.github.com/shashashasha/1020117) to make you a plunkr example.
See this plunker
However, circle packing considers that circles shouldn't overlap each other, so you'll have to figure out another way to achieve the same.