I'm currently trying to read out the present status of Microsoft Teams users and pass it on.
In C# I was able to do this relatively easily, but now I had to switch to Java.
And that's where I run into my problems.
The presence resource type from the Microsoft Graph API is only available in the MS Graph API Beta, so in my Java application, I access the MS Graph Java SDK "com.microsoft.graph:microsoft-graph:1.8.+". But I can't find the class for the presence resource type anywhere, is there an extra MS Graph Beta Java SDK?
Presence resource type in MS Graph Java SDK?
211 Views Asked by crank At
2
There are 2 best solutions below
0
baywet
On
update: there's now a beta sdk available for java.
Also, the presence type was added to the v1 sdk with version 2.5.0
Related Questions in JAVA
- Add image to JCheckBoxMenuItem
- How to access invisible Unordered List element with Selenium WebDriver using Java
- Inheritance in Java, apparent type vs actual type
- Java catch the ball Game
- Access objects variable & method by name
- GridBagLayout is displaying JTextField and JTextArea as short, vertical lines
- Perform a task each interval
- Compound classes stored in an array are not accessible in selenium java
- How to avoid concurrent access to a resource?
- Why does processing goes slower on implementing try catch block in java?
- Redirect inside java interceptor
- Push toolbar content below statusbar
- Animation in Java on top of JPanel
- JPA - How to query with a LIKE operator in combination with an AttributeConverter
- Java Assign a Value to an array cell
Related Questions in MICROSOFT-GRAPH-API
- MicrosoftGraph user impersonation for accessing mail messages
- IdentityServer3 Microsoft Graph scopes and flow
- How should I determine if an MSAL account has an Exchange based email system? (got an exception)
- Get shared calendar from different user(meeting room)
- odata.maxpagesize header not working in Microsoft Graph API?
- Opening OneDrive file in desktop Word
- Microsoft Graph API content 401 Unauthorized
- Getting multiple users/groups by objectids
- Microsoft Graph SDK C#: Use FileSavePicker with Onedrive
- How to use ConfidentialClientApplication to perform AppOnly requests to Graph (Group.ReadWrite.All)
- OneNote update page
- Microsoft Graph GetPhoto not working in Microsoft Teams bot
- Paging in MS Graph API
- Microsoft Graph API multi-tenant token lifetime
- Access user.MemberOf with Microsoft Graph Client Library
Related Questions in MICROSOFT-TEAMS
- Microsoft Graph GetPhoto not working in Microsoft Teams bot
- Microsoft Teams webhook on TFS
- Gif images don't play in Microsoft Teams
- How to mention a user/group in a new message to a channel?
- Microsoft Bot Framework bot not working in Microsoft Teams when using ngrok
- Bot not connecting to MS Teams Channel
- How to create a Connector with configuration loaded from web solution for Microsoft Teams
- ActionTypes.OpenUrl in ThumbnailCard with "tel:" URI doesn't open call in Teams Desktop Client
- How can I implement a translation connector (or bot) in Microsoft Teams?
- context object returned in getContext() method of MicrosoftTeams SDK has subEntityId as "undefined"
- Method receiving Info from Teams causing later methods to crash
- How to mention user in microsoft teams?
- Teams Connector: How to restrict visibility of cards to certain users
- BOTS Framework, Null properties cannot be encrypted
- Sideloading VS Custom Bot in Microsoft Teams
Related Questions in MICROSOFT-GRAPH-SDKS
- MSgraph, takes up to 48 hours before changes are visible
- error Message: Unsupported or invalid query filter clause specified for property 'userType' of resource 'User'. Microsoft Graph SDK Filter()
- Delay when adding user
- How to duplicate a worksheet with its content with microsoft graph excel api
- Accessing user info through Microsoft graph API
- No results when filtering a CalendarView by an extended Property
- Powershell Graph API SDK Update statements
- Microsoft Graph giving "The site in the encoded share URI is invalid" when trying to access shared one note item
- MS Graph API/Workbooks (Excel API): Updating a cell format in a UseRange
- IAuthenticationProvider is deprecated in microsoft-graph:2.3.0, how do I create a GraphServiceClient instance now?
- Exchange Room mailbox location details using GraphClient
- Filtering the transitive group memberships of a user using Graph SDK
- Retrieve bounce email and bcc email Microsoft Graph API .Net Core
- MS graph API for place always returning properties like "Building","Floor" as null
- Unable to send Email using Graph API (C# Console) by creating GraphServiceClient through AccessToken as well as ClientCredentialProvider
Related Questions in USER-PRESENCE
- Mobicents presence server. How to register softphone?
- Check if User is Authenticated in OpenFire
- Connect sip softphone to local server using the ip address instead of 127.0.0.1
- Set presence as unavailable - Facebook Chat API
- presence control in asp.net web applications
- How does Pypresence work, where do I get the Image key?
- Does ejabberd have a module for persisting online/offline status for users to a database?
- SIP Servlets: SipServletRequest getcontent as xml
- How to find out sip users of a specific template are online in asterisk?
- Change XMPPPresence to Away/Busy/Invisible
- XMPP presence Subscription
- XMPP user presence itself
- Not getting extension id with Error CMN-102
- Presence push into Microsoft Teams
- How can I update user online status without reloading the controller?
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 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?
I have now solved the whole thing with a custom request. Not the best solution, but as long as the presence status is only available in the beta and not in the release version, there is probably no better way to do it via the SDK