전체
-
안드로이드 위젯에 동적으로 애니메이션 효과 주기dev/android 2019. 7. 31. 15:05
데이터 업데이트에 대한 노티 효과를 위해 TextView 에 애니메이션 추가를 위해 검색 https://stackoverflow.com/a/19021578/3543411 How to make the textview blinking Guys i have a textview which i need it to be blinking please help me with it. stackoverflow.com 리소스로 애니메이션을 만들어 액티비티에서 동적으로 로드하여 사용. 애니메이션 효과에 대한 부분은 별도 스터디가 필요.
-
Cannot perform specific action because there does not exist a valid use pool domain associated with the user pooldev/aws 2019. 7. 18. 15:52
Cannot perform specific action because there does not exist a valid use pool domain associated with the user pool Cognito user pool 로 사용자 가입시 웹 콘솔에서 추가된 사용자는 확인이 되지만 위와 같은 오류가 반환될 경우가 있다. Cognito 설정중 이메일 확인 메시지를 링크로 설정하고 앱 통합-도메인 이름 에서 도메인을 설정하지 않을 경우 발생된다. 가입 확인 메일에 링크할 url 의 도메인이 설정되지 않아 메일을 보낼수 없는 상황이다. 도메인을 설정하고 가입을 하면 정상적으로 가입이 되고 가입 확인 메일도 전송된다.
-
amplify auth updateUserAttributes 후 currentAuthenticatedUser 갱신 안되는 문제dev/aws 2019. 7. 4. 16:13
updateUserAttributes 로 정보 업데이트를 하고 currentAuthenticatedUser 로 반환되는 user 정보에는 업데이트 전 데이터가 들어있음. Auth.currentAuthenticatedUser({ bypassCache: true }); Auth.currentAuthenticatedUser({ bypassCache: true }); 업데이트 후 위 코드 실행하여 변경된 user 조회 가능. https://github.com/aws-amplify/amplify-js/issues/2534 Updating user attributes does not update cached user data · Issue #2534 · aws-amplify/amplify-js Is your fea..
-
API Gateway 인증에 idToken, accessToken 차이dev/aws 2019. 5. 30. 11:26
https://stackoverflow.com/questions/50404761/aws-api-gateway-using-access-token-with-cognito-user-pool-authorizer AWS API Gateway - using Access Token with Cognito User Pool authorizer? I am configuring an app with various frontends (mobile and web apps) and a single API backend, powered by Lambda and accessed via AWS API Gateway. As I'm planning to use Cognito to authenticate and stackoverflow...
-
서버사이드(node)에서 cognito 이용한 인증 구현dev/aws 2019. 5. 29. 09:01
Cognito user pool on node lambda serverless implementation https://www.reddit.com/r/aws/comments/ak2r2k/cognito_user_pool_on_node_lambda_serverless/ cognito 의 adminXXX 를 사용 https://github.com/awslabs/cognito-proxy-rest-service https://medium.com/@franzwong/howto-implement-user-sign-up-and-login-with-aws-cognito-8330f771b671 https://medium.com/@franzwong/howto-grant-iam-role-to-cognito-authentica..
-
aws lambda layer 로 lambda 소스 다이어트dev/aws 2019. 5. 24. 11:02
aws 문서 - 계층 내 라이브러리 종속 항목들을 포함 https://docs.aws.amazon.com/ko_kr/lambda/latest/dg/configuration-layers.html NodeJS Runtime Environment with AWS Lambda Layers https://medium.com/@anjanava.biswas/nodejs-runtime-environment-with-aws-lambda-layers-f3914613e20e lambda 에서 사용하는 모듈들과 json 들을 layer 로 구성하여 lambda 업로드 소스를 최소화 가능.