본문 바로가기
728x90

BackEnd FrontEnd67

OAuth2 구현하기 & postman test [post man test sample] [get access token api] post http://localhost:8080/oauth/token type: basic auth / client_id : foo , client_secret: bar [{"key":"client_id","value":"foo","description":"","type":"text","enabled":false},{"key":"username","value":"user","description":"","type":"text","enabled":true},{"key":"password","value":"test","description":"","type":"text","enabled":true},{"key":"scope",.. 2019. 12. 1.
react native run android 실행하기 1. react-native start 2. react-native run-android [참고] react-native bundle --platform android --dev false --entry-file index.js --bundle-output android/app/src/main/assets/index.android.bundle --assets-dest android/app/src/main/res 2019. 11. 14.
react native - Could not find tools.jar. Please check that /usr/lib/jvm/java-8-openjdk-amd64 contains a valid JDK installation. $ sudo apt-get install openjdk-8-jdk-headless $ vi ~/.bashrc export ANDROID_HOME=~/Android/Sdk export PATH=${PATH}:${ANDROID_HOME}/tools export PATH=${PATH}:${ANDROID_HOME}/platform-tools 2019. 11. 1.
Ubuntu 16.04/18.04에서 node.js 최신 버전 설치 방법 $ sudo curl -o- https://raw.githubusercontent.com/creationix/nvm/v0.33.0/install.sh | bash $ export NVM_DIR="$HOME/.nvm" $ [ -s "$NVM_DIR/nvm.sh" ] && \. "$NVM_DIR/nvm.sh" $ [ -s "$NVM_DIR/bash_completion" ] && \. "$NVM_DIR/bash_completion" nvm으로 설치할 수 있는 버전 확인하기 $ nvm ls-remote 그 버전을 기입해 설치 $ nvm install 10.16.0 그럼 다음과 같이 node와 npm 버전이 올라간 것을 확인할 수 있습니다. $ node -v v10.16.0 $ npm -v 6.9.0 2019. 10. 31.
728x90