Giter Site home page Giter Site logo

uploaded photos about facebookquerybuilder HOT 5 CLOSED

sammyk avatar sammyk commented on June 11, 2024
uploaded photos

from facebookquerybuilder.

Comments (5)

SammyK avatar SammyK commented on June 11, 2024

That looks about right - did you try it out? :)

from facebookquerybuilder.

mcpDeveloper avatar mcpDeveloper commented on June 11, 2024

Yes i try it, but it brings 25 "ids" " created_time" and "timezone_type" of tagged photos.

And when i do this
Facebook::extend('getUserPhotos', function($facebook)
{
$photos = $facebook->edge('photos')->fields('id', 'picture')->limit(5);
return $facebook->object('me')->fields($photos)->get();
});

it works perfect but it 5 id of tagged photos but also bring " created_time" and "timezone_type" is that normal?

thanks!

from facebookquerybuilder.

SammyK avatar SammyK commented on June 11, 2024

Ah! I think I see what you're doing now. The /me/photos/uploaded endpoint is a bit special so you could just do this:

Facebook::extend('getUserPhotos', function($facebook)
{
    return $facebook->object('me/photos/uploaded')->fields('id', 'picture')->limit(5)->get();
});

from facebookquerybuilder.

mcpDeveloper avatar mcpDeveloper commented on June 11, 2024

Thank you very much! it work perfect!

2 more question and no more, i promise

1- if i do not specified with the function "limit" it only bring 25 element, how can i bring all the element?

2 - And the create tag i belive it is default opcion you set as a "carbon" thing, but i have not being able to set it off, how does it work?

thanks!

from facebookquerybuilder.

SammyK avatar SammyK commented on June 11, 2024

Glad that helped!

  1. You'll need to specify a limit and paginate over the results to ensure you have all the results.
  2. There isn't an option to disable Carbon, but that's an option to consider adding to v2.0. Is there a specific reason you want to disable casting dates to Carbon object?

from facebookquerybuilder.

Related Issues (18)

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.