I have some data in mysql database. I want to send these messages to a BB channel. I have created a BB channel and I want an API to share all the messages in this channel.
Is there any PHP, JSP or C# library to do this.
I am new to this field and I don't have much knowledge abut this.
Please help.
Thanks,
Pravin
As of September 30th this was on the road map for BBM Channels but no specified timeline. You might try posting on that thread to see if there is any more news, especially now that Channels is out of beta.
Related
I am using QB Php sdk from last 7 years and it is working fine with stability.
I request Keith from consolybyte & other fellow members to please share the list of all allowed actions which can be done in QB Desktop via QB PHP SDK. I have been using invoice, item, payments, customer (add/mod/del) actions.
I want to know what else can be done via PHP SDK. In Quickbooks.php alot of functions are mentioned but not sure if all of these are supported for QB Desktop. It will be of great help if exact list can be provided. There is no proper documentation of same. I have gone through. At couple of places(https://github.com/consolibyte/quickbooks-php) it is mentioned it supports order push from website to QB and etc etc. I am looking for exact "etc" list :) Thank you for the assistance in advance
All of what QuickBooks desktop supports is documented here:
https://developer.intuit.com/app/developer/qbdesktop/docs/api-reference/qbdesktop
I can't seem to find anything more than the changelog, does anyone know if there's a roadmap for planned functionality?
Notably, we're looking to have our employees enroll in MFA through a custom app calling the Graph API and add their mobile number, other email, and authenticator. I found a confirmation that this would be available from here but there hasn't been any update for nearly two years.
Thanks in advance!
There is no roadmap for Microsoft Graph currently. We announce new features into preview throughout the year with two major moments at Build and Ignite conferences. You can keep up with those announcements at https://developer.microsoft.com/en-us/graph/blogs/.
We do have a Microsoft Graph UserVoice https://microsoftgraph.uservoice.com/ where you can request and see others requests. Our PMs will actually change the status of features that are in development. This will give you a subset of the things we're working on that relate to public requests.
As you mention , our Change log will be the way to track new things on the API https://learn.microsoft.com/en-us/graph/changelog.
We also have a monthly Community Call online that we announce things that is the first tuesday of every month. https://developer.microsoft.com/en-us/graph/events . Existing events are blogged about and also available here https://developer.microsoft.com/en-us/graph/gallery/?filterBy=Podcasts,Videos
my goal is simple: I want to fetch a detailed report of the PSTN usage of my users in Office 365. I wanted to achieve that with PowerShell but unfortunately, the Get-CxPSTNUsageDetailReport command was deprecated in January 2018.
I ended up playing around Microsoft Graph as suggested by this article (the one about the deprecated command). After taking a deep look in here, I wasn't able to find any information on how to get this report from the API.
Do any of you knows if there is:
An API query for that
An official support channel for this
Also, I've found some threads about Skype for Business and most of them were back from 2017 stating that a lot of S4B features were not available in Graph, is it still the case?
If so, why are they suggesting Microsoft Graph as an alternative then?
You can use this API:
/reports/SfbActivity(view=view-value, period=period-value, date=date-value)/content
For more information, refer to the documentation.
I have been looking at the REDDIT api documentation, and just by looking at it, it seems that one CANNOT(?) send a PM message to another Reddit user. Please, prove me wrong :)
Is it possible to see another user's subredddit subscriptions?
Thanks for any input.
You can send PMs through reddit's API with compose.
You cannot see other users' subreddit subscriptions.
Depending on the language you are using, you may want to look at existing API libraries. In my experience PRAW for python is the most feature-complete (disclosure: I am the package maintainer).
I'd like to be able to get all my Google chat logs so that I can use them for training a chat bot type of thing.
I am aware of the limitations that have been imposed by Google so that chats cannot be simply downloaded through IMAP. I'm looking for workarounds.
As of September 2011, Google removed the restriction on downloading chats. Google now allows export of chatlogs using IMAP.
It's not possible to download the chat logs unless they're attached to an email conversation - maybe you could fwd all of the logs that are held in your 'chats' folder and then download the conversations over IMAP or POP?
I recently had to do the same thing and coded a quick ruby script. http://9seats.com/2011/04/archiving-gmail-chat-logs-with-ruby/
If you're looking to make a program to do this, you could use a greasemonkey script and a local PHP server.
The greasemonkey script would pick up chats as you visit them, parse them, and send them to the local PHP server, which could then dump it to a TXT, SQL, whatever.
Contact me if you want some help, I might be interested in this, though I'll be on holidays the next months :)
Take a wander through the Google Talk API. And this may, or may not, help too: GMailAPI
If you know how to download a email. You can do the same to chat. Because chats are nothing but an email tagged with label chat. If you see chats, they are actually sent from the person you chatted with to you.