Coder Social home page Coder Social logo

Comments (5)

Just1B avatar Just1B commented on April 28, 2024 2

Hi amzar96,

This repository contains all the method to create, update & request objects in the api ( AD_ACCOUNTS, PAGES, IG_USERS, VIDEOS etc ... ).

For example, if you are trying to know if a page has_transitioned_to_new_page_experience, you can request this information with the graph request below.

ex : {PAGE_ID}?fields=id,name,has_transitioned_to_new_page_experience

https://github.com/facebook/facebook-python-business-sdk/blob/main/facebook_business/adobjects/page.py#L4809

Regards

from facebook-python-business-sdk.

Just1B avatar Just1B commented on April 28, 2024 1

Depends on the type of data your are requesting, if you want to get page insights it does.

https://github.com/facebook/facebook-python-business-sdk/blob/main/facebook_business/adobjects/page.py#L2303

from facebook_business.adobjects.page import Page
from facebook_business.api import FacebookAdsApi

access_token = '<ACCESS_TOKEN>'
id = '<PAGE_ID>'

FacebookAdsApi.init(access_token=access_token)

fields = [ ... ]

params = { 
  'date_preset' = '<YOUR_PRESET>
}

print(Page(id).get_insights(fields=fields, params=params))

from facebook-python-business-sdk.

amzar96 avatar amzar96 commented on April 28, 2024

Understand it is achievable using graph request. But from facebook_business.adobjects.page import Page let's say I am using this method, how to get fields=id,name,has_transitioned_to_new_page_experience these?

from facebook-python-business-sdk.

Just1B avatar Just1B commented on April 28, 2024

The snippet below should do the job for you 👍

You can check in the examples directory for more use cases : https://github.com/facebook/facebook-python-business-sdk/tree/main/examples

from facebook_business.adobjects.page import Page
from facebook_business.api import FacebookAdsApi

access_token = '<ACCESS_TOKEN>'
id = '<PAGE_ID>'

FacebookAdsApi.init(access_token=access_token)

fields = [
  'id',
  'name',
  'has_transitioned_to_new_page_experience'
]

print(Page(id).api_get(fields=fields))

from facebook-python-business-sdk.

amzar96 avatar amzar96 commented on April 28, 2024

Got it, thanks @Just1B . Just know that it doesn't support date range.

Thanks

from facebook-python-business-sdk.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.