IBM Bluemix Services - service

I have one question according Bluemix Services. Please Help me out if you could help me.
- I want to use third party service that is Cognitive Graph for my project. But i couldn't access it.
Could you guide me how can i do that?

Please ask questions about Bluemix offerings at IBM developerWorks Answers. Stack Overflow is for programming how-to questions.
The Bluemix Cognitive Graph service is currently in closed beta and therefore not available to the general public. To learn more, you can submit your email address as explained on the service's Bluemix Catalog page.

Related

Is there a way to access IBM cloud watson personality insights service now(19.12.2020)? [closed]

Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
This question does not appear to be about a specific programming problem, a software algorithm, or software tools primarily used by programmers. If you believe the question would be on-topic on another Stack Exchange site, you can leave a comment to explain where the question may be able to be answered.
Closed 1 year ago.
Improve this question
I am trying to access IBM Watson Personality Insight service through the IBM Cloud Catalog but it does not show up there.
In the Personality Insight Documentation it is stated that this service will not be available from 1 December 2021 but I cannot access it now.
I tried to complete Get started with AI development by using the Personality Insights service but links to the Personality Insight services redirects to IBM Cloud Catalog or Watson Natural Language Understanding
I tried to access the service via IBM Cloud CLI on my machine but it does not show up there also.
I just need to access the service to create API key for my application.
Is there anyone can help me to access this service?
Thanks.
The message in the docs for Personality Insights says that is deprecated since December 1st, 2020. It is available until December 2021 if you already have an instance of it. In that latter case, you could always create new credentials or service bindings and it should be listed under your resources.

I need an advise to make a chatbot [closed]

Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
We don’t allow questions seeking recommendations for books, tools, software libraries, and more. You can edit the question so it can be answered with facts and citations.
Closed 3 years ago.
Improve this question
I need to make a chatbot for my website which answers with the choices and user selects one of them. It can be a facebook chatbot or it can work without any platform.
I have tried many applications like https://www.intelliticks.com and etc, but they are not free. I tried also to make it by code with the help of RestFB api in Java. With this Api now I am able to give some answers to users but I could not make an bot which answers with choices.
Below is the sample image to explain what I want to do.
Please give any advise or tutorial or code example which can be helpful for me.
Adding a chatbot into your website is a two-step process:
Create a chatbot - There are some platforms to develop a bot i.e Dialogflow, Amazon Lex, Microsoft bot framework, IBM Watson etc. you can choose according to your need.
Deploy it into the website so that visitors can interact with it. Different bot platforms Provide the APIs and SDK to send the queries to the bot. Either you can implement them or choose any third-party services such as Kommunicate.io which provides the code less integration with the bot platforms.
Here are some blogs which you can refer to for more detail.
Beginners guide to creating chatbot using dialogflow
Integrate Amazon Lex bot into website
Chatbot with multiple-choice questions
If you want more detail on which bot platform to choose here is the quick comparison of different bot platforms available.
DialogFlow is a powerful platform which enables building a conversation on multiple channels (web, Facebook, Telegram) and supports a variety of responses (simple text, multi choice, cards, media content)
It is free, multi-channel and allows to define a Webhook for integrating a backend.
While most channels are free if you want to integrate it in a website you will need a plugin (Kommunicate, Botcopy) as the default Web widget is meant for testing only (but it is very easy to integrate, maybe it is nice to try how users will interact with the bot).
Good luck

Can anyone confirm that IBM Cloud works from China? [closed]

Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
This question does not appear to be about a specific programming problem, a software algorithm, or software tools primarily used by programmers. If you believe the question would be on-topic on another Stack Exchange site, you can leave a comment to explain where the question may be able to be answered.
Closed 9 months ago.
Improve this question
I am a Unity game/simulation developer who works at a non-profit lab at a university in Indiana, USA. We have recently entered an art/tech exhibition in Beijing, China.
The theme of the exhibition is AI. Our proposal was accepted and includes the use of several IBM Cloud services (Speech To Text, Language Translator, and Tone Analyzer). We have had internet-related issues at exhibitions in Beijing before and I have been unable to confirm whether IBM Cloud services are accessible from China.
I know there is a server hub in Tokyo. Can anyone confirm that IBM Cloud (and specifically the aforementioned services) is available from Beijing?
I could not find any information on the IBM Cloud website confirming the accessibility from China. Their "Support" > "Ask the community" links led me to StackOverflow.
Additionally, for a list of services and current hosting locations see https://cloud.ibm.com/docs/resources?topic=resources-services_region
David, the Watson services are not available in China.
We are working on adding them to South Korea but there is no eta at this time.

IBM DW001/E0 introductory course for Bluemix

Need to know whether the links for this course are under maintenance currently. Trying to open the link without much success.
This link should take you to the course. It requires its own log-in, separate from your main IBM login ID. Please ask questions about IBM offerings at IBM developerWorks Answers. Stack Overflow is for technical programming questions.

why many aws service didn't provide the RESTful API but only the sdk? [closed]

Closed. This question is opinion-based. It is not currently accepting answers.
Want to improve this question? Update the question so it can be answered with facts and citations by editing this post.
Closed 4 years ago.
Improve this question
I studied Amazon web service API reference, I found many services (EC2,Cloudwatch) only support the programming SDK, java/python and so on. Only little services provide RESTful API, such as S3.
I think Restful API is more easier to use than programming SDK. Why Amazon didn't provide the Restful API?
Some may say it just comes down to opinion... but imo, there's no reason to prefer lower RESTful API over SDK, when your language of choice has one.
The SDK's are hand-crafted by AWS to get the most out of their API's (and who would know how to do so better than them?), and give you abstractions that you can take advantage of.
For anything besides a trivial project toying around with AWS, choosing to work with the lower-level API's means that you will end up re-implementing many things the SDK's give you out of the box, aka reinventing the wheel...
The SDK's are there to get you productive and working, fast.
I agree that REST APIs are preferable to SDKs but, actually, all of the AWS services do expose an HTTPS interface, they're just not "RESTful." They call it the "Query API."
http://docs.aws.amazon.com/AmazonCloudWatch/latest/DeveloperGuide/Using_Query_API.html
http://docs.aws.amazon.com/AWSEC2/latest/UserGuide/using-query-api.html
Well, in fact, all services of AWS in the SDK communicates with POST/GET.
In the documentation of the AWS services, they provide the url of each action.
The only thing you need to do is read the documentation.
See this S3 documentation which you can see how things works:
http://docs.aws.amazon.com/AmazonS3/latest/dev/UsingHTTPPOST.html