I'm trying to create an access token using Databricks community edition but the option doesn't seem to be available. Can an access token be created in the community edition or is this not available?
This is what the guide shows:
This is what I'm seeing:
I still don't know if an access token can be generated from the community edition but I was able to solve the problem by upgrading and setting up an instance on Amazon. The access token option is now available on the upgraded instance.
Related
I'll try to share my question and context here:
WSO2 version 3.2.0
Several APIs published with Developer Portal Visibility = Restricted by Roles
I want to create a new role that allow some users discover the APIs on the API Developer Portal but without the posibility to subscribe (Read only - Observer mode).
Any body know if this operation is possible on this WSO2 version 3.2.0 ?
I see that the new version 4.1.0 have the internal/observer role but it's not present on 3.2.0. When I try to replicate it over my version, the users assined to this role don't have accesss to the API Developer Portal (Only the users with the internal/subscriber are granted to access).
Thanks of lot!
Claudio
I'm creating a MariaDB server on Azure via ARM template (using this quickstart and specify B_Gen5_1 (Basic) vm size. I get the following error:
This feature is not available for the selected edition 'Basic'.
Which feature is referring in this error?
I found this question on microsoft docs website and according to the answers the issue could be in Basic tiers not supporting virtual network endpoints. I'm not sure if that's correct
I used to connect Azure DB in pycharm easily. Since MFA is activated I cannot connect my DB into it. Can anyone help me please, I really need to use it from pycharm directly without having to use SQL server management studio each time i want to query the DB. Thank you.
I have tried selecting Azure Active Directory interactive option but it fails.
It appears on some forums that this is a typical pycharm issue where it does not handle MFA authentication but I can't find something recent, all questions asked were in 2017 or 2019.
I am trying to use google cloud speech API in microsoft azure machine(Where I have installed asterisk service). Is it possible to do this. Because in GCP we have an option where we can enable 'Allow all cloud API services'. But in microsoft we do not have an option to enable. If I use I am getting the following error. Please go through the staktrace and help me.
Note : we have a working version in GCP machine. Now I am deploying it into microsoft vm(Then only I am getting this error).
An API can be called over the internet. If the machine is configured to be able to connect to the internet than yes, you can.
Looking at the error you're getting, it looks like there's something wrong with your authentication setup.
DefaultCredentialsError: Could not automatically determine credentials. Please set GOOGLE_APPLICATION_CREDENTIALS or explicitly create credentials and re-run the application.
For more information, please see https://cloud.google.com/docs/authentication/getting-started
If you follow the instructions in the linked documentation on Getting Started with Authentication, you should be good to go.
Seams like i answered same less than week ago.
Please check that you setuped credentials for asterisk user, not for root. Asterisk is running under asterisk user.
I'm trying to add / install Microsoft.Azure.Mobile.Server.Authentication into my PCL project but there is an error says
Could not install package 'Microsoft.Azure.Mobile.Server 2.0.0'. You are trying to install this package into a project that targets '.NETPortable,Version=v4.5,Profile=Profile49', but the package does not contain any assembly references or content files that are compatible with that framework.
I've tried installing the previous version, but the exact same error appeared. I've also tried to changing Framework version to .NET 4.6, but other errors come up.
I want to use GetAppServiceIdentityAsync() method which only supported by that namespace. Is there any other way to add that reference into my PCL project?
As I known, GetAppServiceIdentityAsync is used to retrieve the Identity (ProviderCredentials) for the specific provider in your server-side code. For your mobile client, I assumed that you could leverage MobileServiceClient.InvokeApiAsync<List<AppServiceIdentity>>("/.auth/me"); to retrieve the identities and filter them with the specific provider, them you could get Provider, UserId and UserClaims properties as you expected. For more details, you could refer to Obtaining User Claims.
Azure Mobile Apps has two versions - one that runs on the server and the other runs on the client. You are trying to use the server version and that requires ASP.NET and .NET Framework 4.5+ (4.6 at the moment). It won't work in your client.
If you are using Azure Mobile Apps on the server, then you have already added a referenced to Microsoft.Azure.Mobile.Client and created a mobile client reference to your Azure App Service. You have also already configured your Azure Mobile Apps Server and linked your auth provider using Azure App Service Authentication. If you haven't, check out the book http://aka.ms/zumobook - this will give you the right instruction on this.
If you are still with me, you then need to do a HTTPS connection to your Azure App Service URL + /.auth/me - this returns a JSON blob which contains the provider information that Azure App Service Authentication knows about. One of the things that the service knows about is the auth token used to authenticate. You can then use this auth token to get additional information about the user if it isn't in the JSON blob.
A great way to get that information is to use the client.InvokeApiAsync<>() method as Bruce mentioned. This is covered in the book as well.
Have you tried to set the Android API Level to a higher level? I had this error by installing Moq and I could solve this problem with changing the Android API Level to the highest API level. Please try to use Android 7.1 (Nougat) with API-Level 25, also at the minimum SDK.
You can change it with: Right click on the project -> Options -> Build -> General -> Android Application
Under General you can also try to change the target version for the app to a higher level.