hey guys is there a way to post the latest post from telegram Chanel to my website and I am working with javascript
You can use post widget, but you will need to find a way to get the latest channel post by yourself: I would use a bot to track when the post is posted and store its ID in a database, then I would display it on the page.
Related
Today I had an idea. I want to make a light switch on when I get a new follower on my Instagram account.
I know some APIs to switch on the light, but I'm looking for a way to get notified on new followers. So I searched on Instagram documentation but I only found webhooks for mentions and stories.
Do you know if there is a web to get notified on a new follower to call the light API?
Instagram does not provide a webhook endpoint for follower events. It provides support for changes to the comments, mentions, and story_insights fields as described here.
The link has changed and the new link for the documentation on this is here:
https://developers.facebook.com/docs/instagram-api/guides/webhooks#step-1--create-an-endpoint-and-configure-the-webhooks-product
But dmulter is right, they don't seem to have this ability. you can make webhooks for comments, mentions, and story insights
also you can get webhooks on instagram messages through facebook messenger api. here is some documentation on this: https://developers.facebook.com/docs/messenger-platform/webhook#events
Try to look at Webhooks. I’m using webhooks to get notifications about new like on my facebook page. Instagram has webhooks to. But I didn’t read the documentation.
I'm writting a new post, because all of topics that was related with getting Instagram Direct message via API are a little bit old.
Do anyone knows if there is a possibility of GET Direct Messages via API or in some programatically way?
Right now, it doesn't look like you can. The Instagram Graph API docs don't mention direct messages at all. The old Instagram API never had this.
Take a look to the Component InstagramApiSharp, it contains this functionnality. There are some actions that you can built for the direct message with it.
Can I use SurveyMonkey APIs with a custom Front end for my website? Example - I create a page add questions and the make a API call to add question to the survey. Send the link to a user and fetch the survey to display on the page and submit the response via API call.
I'm not sure your exact question, but the API docs are here which can explain how to do all the things you want to do.
Creating surveys here
POST /v3/surveys
Creating pages here
POST /v3/surveys/{survey_id}/pages/
Creating questions here
POST /v3/surveys/{survey_id}/pages/{page_id}/questions
Creating responses here
POST /v3/collectors/{collector_id}/responses
Hopefully that helps you get started.
I'm currently working on Github API. I'd like to get news feed like we can see at https://github.com . I'd like to get information same as the authenticated user can see on the top page of github.com. I'm browsing Github's api documentation here: https://developer.github.com/v3/ . But I can't tell which is the right for my purpose. Anyone give a help to detect which is the best API for me?
I finally found which API is right for me by checking response from each API.
GET /users/:username/received_events is the one that I was looking for.
https://developer.github.com/v3/activity/events/#list-events-that-a-user-has-received
Hi, I want to get the user list in one Twitter post as picture shown. but I didn't find the API which I can get this kind of data on Twitter. Is there anyone know how can I get this data. Thanks
The official API does not include that functionality.
You will find that there are lots of actions which are available on the official website & apps which are not allowed in the API.
Sorry.