Questions tagged [aws-mobilehub]

Use this tag for questions related to AWS Mobile Hub, which provides an integrated console that helps you build, test, and monitor your mobile apps. Use the console to choose the features you want to include in your app. Mobile Hub then provisions and configures the necessary AWS services on your behalf and creates a working sample app for you.

Useful Links:

  1. AWS Mobile hub
  2. Documentation & Developer Guide
167 questions
3
votes
2 answers

How to link my mobile hub with my existing cognito user pool?

I'm following these pages to use cognito on my mobile app https://docs.aws.amazon.com/aws-mobile/latest/developerguide/getting-started.html and https://aws.amazon.com/blogs/mobile/easy-sign-in-and-sign-up-ui-with-the-aws-mobile-sdk-for-android/ I…
casolorz
  • 8,486
  • 19
  • 93
  • 200
3
votes
3 answers

No such module 'AWSMobileClient' error inside AppDelegate.swift

I'm trying to link aws frameworks with a native app. I'm using cocoapods and I have included and installed the dependencies I'll need as such inside my Podfile platform :ios, '9.0' use_frameworks! target 'auth' do inherit! :search_paths …
Arron J. Linton
  • 681
  • 2
  • 11
  • 28
3
votes
3 answers

awsmobilehub and cocoapods integration

I have started using AWSMobileHub and I am just going through the integration steps but it does not appear to play nicely with cocoapods which I intend on using in the project. I have followed the integration steps and add the frameworks which I…
glogic
  • 4,042
  • 3
  • 28
  • 44
3
votes
1 answer

Testing Amazon SNS for iOS using the Mobile Hub but can't get it to work

Per the title, I'm trying to get AWS SNS push notification to work on iOS device. For testing purpose I wanted try the Mobile Hub (https://console.aws.amazon.com/mobilehub) and work my way on top of the sample app that's given. I just can't seem to…
shle2821
  • 1,856
  • 1
  • 19
  • 26
3
votes
1 answer

Using AWS Mobile Hub to get a working sign in

I was under the impression that AWS Mobile Hub built out things for you in the sample app. But I see on the resources page that it uses a AWS Cognito which I defined an auth and unauth roles. The app builds but I keep getting this when I try to…
cdub
  • 24,555
  • 57
  • 174
  • 303
2
votes
0 answers

How to use AWS Mobile Hub with NativeScript

I searched a lot but never found a way to Integrate and use AWS MobileHub in NativeScript Project. i am very new to NativeScript, so can anybody out there help me please. In official documentation there is a SDK for React Native found here but i am…
2
votes
1 answer

How to Subscribe to All GraphQL Mutations in AWS-Amplify Vue Components?

I am trying to subscribe to changes on delete, create and update mutations. In my GraphQL schema, I created a subscription field that listens to all those mutations with type Subscription { onAll: Task @aws_subscribe(mutations:…
Waleed93
  • 1,130
  • 2
  • 15
  • 24
2
votes
3 answers

Amplify.service.api.get returns sampleCloudAPI does not exist

I'm trying to setup AWS Mobile Hub, specifically using Amplify and Angular (5). I've setup authentication, using the provided and it works great. I can login and access the username via the AWS provided sample like…
Joe Murray
  • 125
  • 1
  • 2
  • 9
2
votes
1 answer

UpdateItem - access denied

EDIT: I updated the leadingkey from userId to sub, which per AWS documentation should match the userID from the signed in user ie ${cognito-identity.amazonaws.com:sub} and it still doesn't work I have a DynamoDB table setup through MobileHub and…
froggomad
  • 1,747
  • 2
  • 17
  • 40
2
votes
2 answers

How to achieve one to many relation in dynamodb?

I am new to dynamodb but worked with MongoDB relationship. I am very confused while reading aws docs for dynamodb one to many relationship. So my scenario is: For example, I have tables user and addresses: Table:…
2
votes
0 answers

cant load dynamoDB item to my ios app

I'm trying to load an item from my dynamodb table to my ios app func fetch() { dynamoDBObjectMapper.load(Dish.self, hashKey: "001", rangeKey:"01").continueWith(block: { (task:AWSTask!) -> Any? in if let error = task.error as…
H.Epstein
  • 721
  • 1
  • 7
  • 26
2
votes
2 answers

How to set up AWS Mobile Hub DynamoDB for anonymous data gathering

My use case is I want to collect some data from my mobile application. A record should be written every time the app is used. Mainly, I am unsure whether to use Public, Protected, or Private. I don't want any users to have read access, but they need…
2
votes
1 answer

API created through AWS Mobile Hub does not work

I am trying to create an API endpoint to execute my AWS Lambda function in my mobile application. When I create a custom API and test the POST method, I get the proper response code of 200 and the correct String phrase returns: "The name is…
hermt2
  • 844
  • 3
  • 14
  • 33
2
votes
1 answer

Swift 3 - Thread 1: EXC_BAD_INSTRUCTION (code = EXC_I386_INVOP, subcode = 0x0)

I am trying to add user authentication functionality into my app using AWS Cognito as a backend. So far I am getting this error whenever my app tries to build, and when it does it points to these errors in two of my classes. AWSMobileClient…
2
votes
0 answers

Linker errors with AWS library

I'm trying to integrate AWS to my existing ios project and I'm getting "ld: symbol(s) not found for architecture arm64" error and a bunch of linker errors like "_OBJC_CLASS_$_AWSSNSCreatePlatformEndpointInput, referenced from: objc-class-ref in…
KMC
  • 1,677
  • 3
  • 26
  • 55
1
2
3
11 12