AWS Cognito authenticating in Mac OS - swift

I've created iOS app with Cognito authentication. It works and Cognito service is good enough.
But I need to integrate Cognito in OS X app now with same user pool. I'm very frustrating that AWS doesn't provide OSX SDK.
I've been trying for several days to solve it. But no any luck.
- Non official SDK https://github.com/swift-aws/aws-sdk-swift/ - no appropriate SDK for OS X
- Thought about REST API - got problems with generating hash secret
- even tried fetch token from the web page
Anyone could implement Cognito authenticating in OS X app?
Have idea to develop python/php/java web app and send requests to own app and authenticate users there.

Related

I can't access mobile internet with google

I didn't use firebase in my mobile app project. I logged in with google with API key from my google cloud account. my app works as apk but when play console is installed, google login doesn't work
Merhaba Nurullah, you might need to add the SHA-1 & the SHA-256 keys that you can find on your app's console to your custom authentication system.
You will find these keys in Google Play Console -> Choose your app -> Setup -> App Integrity -> App Signing

Is it necessary to sign every blackberry application even if i have to just test it on blackberry real device?

I had only packaged my application for Blackberry using ripple, but didn't sign that. But when I tried to run the application on my device, it is throwing an error message like Module Mybbapp attempts to access a secure API and the application terminates.
I am using Ripple version 0.9.16 and Blackberry SDK 2.3.1.5 using Eclipse.
If you are using signed API in your code, then you need to sign your application, before installing it on an actual device. Unsigned app that uses signed API will work only on simulator, but won't work on an actual device.
Apply for signing keys here: http://www.blackberry.com/go/codesigning
You will receive an email with attached signing keys. Follow the instructions in the received email to install these keys and use them to sign your application.

access facebook application from non admin account not work

I have downloaded an example of Facebook Application using PHP sdk, and it is working well when I access it from the account that admin that application but when I try to access it from another account I got an error message
please any help
Check the Sandbox Mode for the app on https://developers.facebook.com
This restricts the application to developers.

Facebook Registeration for bada 1.1

I have made an app in bada 2.0 in which I have implement facebook and It works fine.
But when I use the same code for bada 1.1, it doesn't work.
I have:
registered the app for 1.1 both on http://developer.bada.com
used the downloaded manifest file in app and also register the app on https://developers.facebook.com
used the application key and secret in the app
But my app after authenticating successfully doesn't proceed and emulator shows loading continues without showing any error message in the log.
Can any one tell me whether it is a server side problem or I have done something wrong?
I have followed the same steps for the registeration as for bada 2.0 app and 2.0 app works fine.
I there might be some issue in Bada server. Some time it faces some outages. Try after some time..also you should use a different manifest file from Bada developer site for 1.1.

Using installed identity certificate from within an app on iPhone

My question is: is there a way to use the installed identity certificates on the phone from within my app. For example similar case like with Safari: if certain site requires client certificate, the user has to install it on the phone and then when authenticating Safari uses the installed certificate to authenticate. I need to do the same:
User installs certificate on the phone.
The user starts the application and authenticates using the installed certificate.
Thanks
I assume you mean authenticate an NSURLConnection to a specific server? I think you can do this if get into some of the lower level CF calls. Not sure, but this might help: Does SecTrustEvaluate() look for root certificates in the application keychain?