The preview link created in IBM Watson Assistant is not working
https://assistant-chat-eu-gb.watsonplatform.net/web/public/3d262aef-38e5-476e-87f8-6c0177f1c72a
But works perfectly with the Slack. Can anyone help me to sort out this issue?
Finally, I have able to resolve the issue by simply changing the URL by eu-gb to us-south.
Old URL with issue
https://assistant-chat-eu-gb.watsonplatform.net/web/public/3d262aef-38e5-476e-87f8-6c0177f1c72a
New URL
https://assistant-chat-us-south.watsonplatform.net/web/public/3d262aef-38e5-476e-87f8-6c0177f1c72a
Please the discussion in IBM Community https://developer.ibm.com/answers/questions/479867/watson-assistant-visit-url-or-preview-link-is-not.html
Related
I have integrated Alfresco with Salesforce using Salesforce content connector app, and I am also able to see all Alfresco repository contents in Salesforce, but I am not able to do Site and Object mapping in Salesforce.
I am able to see all alfresco sites and able to see the sites, but I am not able to see any Object type name after selecting any site.
Attached are the screen shots for your reference.
If anyone have faced any similar issue, then please help me with this object mapping in Alfresco and Salesforce.
Thanks In Advance.
Are you using Enterprise edition? I understand that the Salesforce Connector is for Enterprise only.
I've recently been trying to implement the Javascript quick-start guide on the official Google Dev page, which can be found here:
https://developers.google.com/gmail/api/quickstart/js
The example is meant to read your Gmail inbox and display the last 10 emails on your html page. I've gone through the example but after I grant permissions in my web browser, I only see a list of the "labels" present in my inbox with no emails/email content. I have created a new custom label in my Gmail inbox and this new label is view-able on my html page, which to me suggests that my connection to the Gmail API is fine.
However, I have not used Python like the example suggests. My html file is currently being hosted on 000WebHost so I figured I don't need to use Python. The reason I came to this conclusion is because the tutorial explains that Python is used to host a web server, as I'm using 000WebHost I think I don't need to host this web server.
This could be my issue if I've misunderstood what Python is really needed for here?
Other than that, I'm wondering if there are any other glaringly obvious issues to someone experienced with the gmail API?
Any advice would be appreciated.
I'm currently trying to get along with the Alfresco development environment but after installing properly Alfresco ECM, I'm stuck after having generated the demo app with yeoman.
I can't find the password despite that I've always put admin/admin in anything I've installed.
Alfresco ADF login page
Moreover when I generate an app from the github repository demos like the datatable for instance,
Files from the ng2-component datatable demo
It doesn't give me anything when I start it just a blank page at localhost:63621
I sincerely hope that anyone can help to resolve those issues which I believe may be linked.
P.S : besides that, everything works properly, the Share webapp works perfectly(I can log in with the users I created in it), even BPM (Activiti) that i wanted to try.
There are a couple of things that you can check:
If you are executing the FE and BE from different domains try to follow this guide:
https://community.alfresco.com/external-link.jspa?url=https%3A%2F%2Fgithub.com%2FAlfresco%2Falfresco-ng2-components%2Fblob%2Fmaster%2FALFRESCOCORS.md
check the url it the settings for the Content service and Prcess service are correct.
I'm new to Angular and Ionic. I'm trying to create a page where a user can upload the file from google drive to the server. He has to do it by logging into Google drive then choose the file from google drive and upload into the server. I don't have any idea of how to start and where to start. If you can guide me or give me an example, it would be helpful.
Thank you.
If you are just starting, I would recommend to start reading first about the documents regarding the Drive API and Ionic Development/ AngularJS. This would help you understand how Drive API works and what are the available functions on the API you use (REST, iOS, Android). These document can help you understand the flow and some code samples that will explain how the function will work. You can also find handling of errors, best practices and performance tips to help you improve your app.
Here are some github repo that can help you with the implementation:
Ionic
AngularJS
Hope this helps.
I wanted to try out google calendar API v3. I have Android Studio 1.0. I created a java endpoint module from Android Studio. I was following the official documentation here
If you follow the link I provided, you will see a line like this
Calendar service = new Calendar.Builder(httpTransport, jsonFactory, credentials)
.setApplicationName("applicationName").build();
Now what will be the httpTransport, jsonfactory and credentials here? Official documentation did not specify anything.
I also followed a sample in java from here.
This was done using Java Servlet and Eclipse. I am not familiar with that. It wont work on Android Studio.
Can anyone provide me a sample? or any direction to work with Calender API and Android Studio? Or what to do in the official sample mentioned above?
You should pass GoogleAccountCredential as the last argument
GoogleAccountCredential googleAccountCredential =
GoogleAccountCredential.usingAudience(context, "server:client_id:" + WEB_CLIENT_ID);
googleAccountCredential.setSelectedAccountName(userEmail);
What is WEB_CLIENT_ID you can find in many tutorials over the internet. It's basically ID which you can generate using Google Developers Console for given project.
Here's how to create Calendar instance with transport and JSON factory.
new Calendar.Builder(AndroidHttp.newCompatibleTransport(),
AndroidJsonFactory.getDefaultInstance(), googleAccountCredential);