Start to use Telegram apis - api

I wants to learn to use the telegram apis, but I not found a some tutorial which help me to start. I am very lost. Help;

Documentation of Telegram is very poor and outdated.
I suggest using TLSharp library written in Visual C#.

This is the first Step you should read it
https://core.telegram.org/api#getting-started
1- Creating an application
2- User authorization
3- And ..... (Continue)
Good Luck !!!

Related

Servicenow integration with Telegram messenger

Can anyone suggest me that,is it possible to create service now incident ticket using Telegram message.
Is there any documentation available to integrate servicenow bot in telegram for this purpose.
Thanks in advance.
Jup this should definitely be possible, I never tried writing a Telegram Bot but I'm sure you are able to handle REST/SOAP and that's how you would create an Incident. As of documentation for Service-Now you should look into JSONv2 or Table API. Apparently as I said I don't have that much of a clue how Telegram Bots are working. I would suggest that you have a look at the FAQ.

Open Contrail API, post request on project resource

I'm working on a cloud project and I have to use Contrail it provides a RESTful API to use, but it is documentation is too small. I would like to know how to perform rest requests, especially post requests on "project" resource.
Each Contrail config node provides supported API details(searchable) at http://:8082/documentation/index.html
You could also check here which is a bit old but should serve your project API needs.
Your question is old, but as there are no other answers I thought I would contribute one. Were you interested in an answer or just wanted to share the documentation you'd written? I agree with you that Contrail documentation is very scarce, and every attempt to contribute to it should be appreciated. I had to integrate with Contrail API a while ago, and found out that in some cases I had to call OpenStack APIs to get the job done (Contrail is built on top of OpenStack). Project and user management were some of them.
I wrote a documentation about Contrail api, For each resource I mention the allowed methods and which parameters to integrate on the request body and I test it until I get it to work finally I put an example. I haven't finished the documentation, I stopped working on Open Contrail. The documentation is my personal try maybe it would be useful and maybe it contains some mistakes, Thus, I would like to share it. You can find it here.

Can we implement this Captcha in siebel

Hi I would like to try Captcha in Siebel Application.
Is there any 3rd party appliaction for thyese Captcha so tha i can integrate it with siebel.
If any such a site is there please share it.
Thanks.
This is an old question! But since this could be useful for someone in future, I am answering it..
I would suggest you to invoke external dll..
Set objTime = CreateObject("SAMPLE_PRJ_NAME.SAMPLE_CLASS_NAME")
objTime.METHOD_NAME
You can find sample VB code from here:
http://www.vbforums.com/showthread.php?645886-Captcha-Generator

REST API for Whiskerboard

I need some help with implementing a status board with a REST API. I've already found the two best options (in my opinion): Stashboard and Whiskerboard.
I have already tried Whiskerboard and I find it easy to install and deploy because it does not need Google App Engine's SDK to be used locally. However, I need something like Stashboard's REST API: http://readthedocs.org/docs/stashboard/en/latest/restapi.html
I know that Whiskerboard is based on Stashboard so probably they have the same REST API. But I cannot seem to find any documentation on Whiskerboard's REST API. Moreover, I looked into each status board's models and there are lots of differences, with Whiskerboard's being largely simpler compared with that of Stashboard's, so they must not have the same REST API.
I will appreciate it if anyone can provide me a link to Whiskerboard's REST API which should be much like Stashboard's. If there really is none, some other solutions could still be suggested. Thank you in advance!
No, it doesn't have the same REST API. You could find this out by reading the code. If you want a similar REST API you have the following options:
Code the feature yourself.
Ask the developer of Whiskerboard for the feature.
Ask someone else at your organization to code and contribute the feature.
Good luck.
You can check out this solution forked by sijis and myself, jvasallo, that we have been working on. He forked the repo for whiskerboard and added an API to it. Still uses Django, and recently I did some work porting it to 1.5.1. Initially, Whiskerboard is a 1.3 Django app.
https://github.com/sijis/whiskerboard

Twitter site-streams

I would like to use the twitter site-streams but I can't find a way to use them. There is no API-docs online and how to access site-streams.
Does someon have an example in php or better c#?
Are there any API-samples or a full API-doc?
Thanks
Matthias
I called oAuth before doing something similar to Shannon Whitley's user streams example. Use the curl commands generated for you at dev.twitter.com to double check your C# generate urls.
The site stream url is buried in the top middle of the doc (/2b/site.json?follow=1,2,3,4,5) # dev.twitter.com
I'd also follow #sitestreams as well to get heads up on site stream restarts.
The API looks to still be in beta, I found this. It's not a lot of detail, but the post was only a few weeks ago so it is something pretty new. It uses the same REST API that all of twitter uses so if you are familiar with that you should be able to use what it gives you.
If you need a tutorial on REST with twitter here is a decent tutorial. It is using basic authentication so I do strongly recommend that you use OAuth instead.