home.social

#graphapi — Public Fediverse posts

Live and recent posts from across the Fediverse tagged #graphapi, aggregated by home.social.

fetched live
  1. FYI: Meta blocks 47 commerce endpoints as Graph API v26.0 lands today: No replacement API exists for the blocked commerce endpoints. Poll ads, Explore Feed and Messenger Stories placements also vanish under the same July release. ppc.land/meta-blocks-47-commer #Meta #GraphAPI #Commerce #PollAds #ExploreFeed

  2. FYI: Meta blocks 47 commerce endpoints as Graph API v26.0 lands today: No replacement API exists for the blocked commerce endpoints. Poll ads, Explore Feed and Messenger Stories placements also vanish under the same July release. ppc.land/meta-blocks-47-commer #Meta #GraphAPI #Commerce #PollAds #ExploreFeed

  3. ICYMI: Meta blocks 47 commerce endpoints as Graph API v26.0 lands today: No replacement API exists for the blocked commerce endpoints. Poll ads, Explore Feed and Messenger Stories placements also vanish under the same July release. ppc.land/meta-blocks-47-commer #Meta #GraphAPI #APIDevelopment #SocialMediaMarketing #DigitalMarketing

  4. ICYMI: Meta blocks 47 commerce endpoints as Graph API v26.0 lands today: No replacement API exists for the blocked commerce endpoints. Poll ads, Explore Feed and Messenger Stories placements also vanish under the same July release. ppc.land/meta-blocks-47-commer #Meta #GraphAPI #APIDevelopment #SocialMediaMarketing #DigitalMarketing

  5. Meta blocks 47 commerce endpoints as Graph API v26.0 lands today: No replacement API exists for the blocked commerce endpoints. Poll ads, Explore Feed and Messenger Stories placements also vanish under the same July release. ppc.land/meta-blocks-47-commer #Meta #GraphAPI #CommerceEndpoints #SocialMedia #DigitalMarketing

  6. Meta blocks 47 commerce endpoints as Graph API v26.0 lands today: No replacement API exists for the blocked commerce endpoints. Poll ads, Explore Feed and Messenger Stories placements also vanish under the same July release. ppc.land/meta-blocks-47-commer #Meta #GraphAPI #CommerceEndpoints #SocialMedia #DigitalMarketing

  7. HollowGraph: la backdoor che trasforma il calendario di Microsoft 365 in un canale C2 cifrato

    Group-IB ha scoperto HollowGraph, un impianto legato al framework iraniano Cavern che usa eventi di calendario Microsoft 365 datati al 2050 come dead drop per comandi e dati rubati, mascherando tutto da traffico Graph API legittimo. Colpita un'organizzazione israeliana.

    insicurezzadigitale.com/hollow

  8. HollowGraph: la backdoor che trasforma il calendario di Microsoft 365 in un canale C2 cifrato

    Group-IB ha scoperto HollowGraph, un impianto legato al framework iraniano Cavern che usa eventi di calendario Microsoft 365 datati al 2050 come dead drop per comandi e dati rubati, mascherando tutto da traffico Graph API legittimo. Colpita un'organizzazione israeliana.

    insicurezzadigitale.com/hollow

  9. Even #Copilot does not know how to identify the actual sender email address from the #GraphAPI for person account in outlook.com #o365 😭 😭 😭 😭

  10. Even #Copilot does not know how to identify the actual sender email address from the #GraphAPI for person account in outlook.com #o365 😭 😭 😭 😭

  11. Today I wrote a post about Getting Started with Microsoft Graph. I look into building a delegated app, authenticating using different methods, and building a script using different methods.

    #intune #microsoft #powershell #graphapi

    joeloveless.com/2025/07/gettin

  12. I'm not easily swearing, but how can I put this: sending infra emails from a data center to addresses managed by #Microsoft 365 is crazy. MS dislikes #SMTP AUTH, ok, and so begins the #OAuth journey to get the #postfix mail relay to embrace OAuth

    The best idea so far is to write a script that acts as a proxy between postfix and MS, sending emails via the MS #GraphAPI. Undoubtedly much more secure and, just as undoubtedly, absolutely no vendor lock-in for something as simple as SMTP ... WTF!!

  13. I'm not easily swearing, but how can I put this: sending infra emails from a data center to addresses managed by #Microsoft 365 is crazy. MS dislikes #SMTP AUTH, ok, and so begins the #OAuth journey to get the #postfix mail relay to embrace OAuth

    The best idea so far is to write a script that acts as a proxy between postfix and MS, sending emails via the MS #GraphAPI. Undoubtedly much more secure and, just as undoubtedly, absolutely no vendor lock-in for something as simple as SMTP ... WTF!!

  14. Aktuell vermehrt #Cyberangriffe auf #Owncloud-Instanzen - Patch für die ausgenutzte #Schwachstelle ist seit September 2023 verfügbar, allen Administratoren wird deshalb die dringende Aktualisierung der #Graphapi-App auf Version 0.3.1 nahe gelegt:
    "Die bei den beobachteten Angriffen ausgenutzte Sicherheitslücke ist als CVE-2023-49103 registriert und mit dem maximal möglichen CVSS-Wert von 10 als kritisch eingestuft." #cybersecurity #cybersicherheit
    golem.de/news/patch-verfuegbar

  15. Aktuell vermehrt #Cyberangriffe auf #Owncloud-Instanzen - Patch für die ausgenutzte #Schwachstelle ist seit September 2023 verfügbar, allen Administratoren wird deshalb die dringende Aktualisierung der #Graphapi-App auf Version 0.3.1 nahe gelegt:
    "Die bei den beobachteten Angriffen ausgenutzte Sicherheitslücke ist als CVE-2023-49103 registriert und mit dem maximal möglichen CVSS-Wert von 10 als kritisch eingestuft." #cybersecurity #cybersicherheit
    golem.de/news/patch-verfuegbar

  16. Some Graph API fun today.

    The Graph API knows `applications` (learn.microsoft.com/en-us/grap) and `servicePrincipals` (learn.microsoft.com/en-us/grap).

    The Azure Portal knows `App Registrations` and `Enterprise Applications`.

    App Registrations (Portal) = applications (Graph API)
    Enterprise Applications (Portal) = servicePrincipals (Graph API)

    Applications (App Registrations) and servicePrincipals (Enterprise Applications) have a unique, individual `ObjectId` but the ones that belong together hold the same `ApplicationId` which glues them together.

    Fortunately, the Graph API documentation is clear and relatively consistent on what is expected for requesting an object - either the `objectId` or the `applicationId`:

    ```
    GET /servicePrincipals/{id}
    GET /servicePrincipals(appId='{appId}')
    GET /applications/{applicationObjectId}
    GET /applications(appId='{appId}')
    ```

    When searching for servicePrincipals (Enterprise Applications) in the portal, it is not that clear since the terms are mixed up a bit.

    #azure #graphapi #entraid #azuread #MicrosoftGraph

  17. Some Graph API fun today.

    The Graph API knows `applications` (learn.microsoft.com/en-us/grap) and `servicePrincipals` (learn.microsoft.com/en-us/grap).

    The Azure Portal knows `App Registrations` and `Enterprise Applications`.

    App Registrations (Portal) = applications (Graph API)
    Enterprise Applications (Portal) = servicePrincipals (Graph API)

    Applications (App Registrations) and servicePrincipals (Enterprise Applications) have a unique, individual `ObjectId` but the ones that belong together hold the same `ApplicationId` which glues them together.

    Fortunately, the Graph API documentation is clear and relatively consistent on what is expected for requesting an object - either the `objectId` or the `applicationId`:

    ```
    GET /servicePrincipals/{id}
    GET /servicePrincipals(appId='{appId}')
    GET /applications/{applicationObjectId}
    GET /applications(appId='{appId}')
    ```

    When searching for servicePrincipals (Enterprise Applications) in the portal, it is not that clear since the terms are mixed up a bit.

    #azure #graphapi #entraid #azuread #MicrosoftGraph

  18. @thunderbird This fuels the sort of exuberance and hope that leads me to keep a candle lit for Graph API. 🙏🙏🙏🕯️

    #thunderbird #GraphAPI #KeepTheHopeAlive

  19. @thunderbird This fuels the sort of exuberance and hope that leads me to keep a candle lit for Graph API. 🙏🙏🙏🕯️

    #thunderbird #GraphAPI #KeepTheHopeAlive

  20. Fantastic blog post around looking for malicious activity in the #Microsoft #GraphAPI techcommunity.microsoft.com/t5. Shiva also demonstrates & shares all the #KQL queries. It really demonstrates some of the power of KQL. For the next week the #KQL book is 50% off at MS Press. microsoftpressstore.com/promot. All the queries in the book are available on GitHub repo for the book. github.com/KQLMSPress/definiti. #infosec

  21. Fantastic blog post around looking for malicious activity in the #Microsoft #GraphAPI techcommunity.microsoft.com/t5. Shiva also demonstrates & shares all the #KQL queries. It really demonstrates some of the power of KQL. For the next week the #KQL book is 50% off at MS Press. microsoftpressstore.com/promot. All the queries in the book are available on GitHub repo for the book. github.com/KQLMSPress/definiti. #infosec

  22. Zuckerberg criticizing Apple for gatekeeping shows a serious lack of self-consciousness.

    Remember the Graph API? They just kept on shutting all the features that were deemed "too powerful".

    #facebook #graphapi

  23. Zuckerberg criticizing Apple for gatekeeping shows a serious lack of self-consciousness.

    Remember the Graph API? They just kept on shutting all the features that were deemed "too powerful".

    #facebook #graphapi

  24. Anyone has used the #microsoft #sdk for their #graphAPI? The #php version.

    Migrating to V2 seems to break thinks. Issues opened on #github but maybe I can have some luck here. 🤞 🔁