분류 전체보기
-
07/01 작업내용개발일지/팀GC 2021. 7. 1. 18:21
연출회의 유니티 웹뷰로 카카오 로그인 한 뒤, jwt토큰은 웹뷰에서 앱으로 전달 using System.Collections; using System.Collections.Generic; using UnityEngine; using UnityEngine.UI; public class BestHttp : MonoBehaviour { UniWebView webView; public Text txtJWT; // Start is called before the first frame update void Start() { } // Update is called once per frame void Update() { } public void WebViewOpen() { webView = gameObject.AddC..
-
06/30 작업내용개발일지/팀GC 2021. 6. 30. 18:23
jwt토큰 테스트 카페24 node.js 서버 작동 안됨 로컬에서는 작동되나 카페24에 호스팅하면 작동되지 않음 TypeError: OAuth2Strategy requires a clientID option at Strategy.OAuth2Strategy (/home/hosting_users/hijun1/apps/hijun1_teamgctest/node_modules/passport-oauth2/lib/strategy.js:83:34) at new Strategy (/home/hosting_users/hijun1/apps/hijun1_teamgctest/node_modules/passport-kakao/dist/Strategy.js:33:31) at Object. (/home/hosting_users/h..
-
06/30 파이어베이스(Firebase) 사용 연습게임 플랫폼 응용프로그래밍 2021. 6. 30. 12:34
파이어베이스 실시간 데이터베이스 클라우드 저장 애널리틱스 https://minquu.tistory.com/202 0630_ 서버(FireBase) 파이어 베이스를 한다. 2가지 할 것이다. 1.실시간 데이터 베이스 2.구글 애널리틱스 ---- 먼저 앱 등록을 해야한다. https://firebase.google.com/?gclid=CjwKCAjwieuGBhAsEiwA1Ly_nbYl-Mw1oHrXWl7cFWEJFVQFEBwdM.. minquu.tistory.com app.cs using System.Collections; using System.Collections.Generic; using UnityEngine; using UnityEngine.UI; using GooglePlayGames; using ..
-
06/29 작업 내용개발일지/팀GC 2021. 6. 29. 18:21
프로토콜 문서, DB 설계문서, 서버 날짜 컬럼명 부분 중복 문제 해결 user_mission_info acquisition_date -> mission_acquisition_date user_inventory_info acquisition_date -> item_acquisition_date jwt 테스트 jwt토큰 생성, 검증 https://helloinyong.tistory.com/111 [2019.05.10] JWT-Token 방식의 정보 인증 [사용법] 사용자가 로그인 후, 유저 정보를 cookie,Session 방식이 아닌 token 방식으로 안전하게 관리하는 방법이 있다. # token 방식의 특징 사용자 정보를 일일히 서버의 세션에 저장하지 않고, 사용자의 로컬 helloinyong.tis..
-
06/28 인공지능 펭귄만들기유니티/인공지능 2021. 6. 28. 15:41
1. 환경 변수 확인 파이썬 path가 잡혀있는지 확인 3.62 확인 cmd python -V where python 2. ml agent 다운로드 workspace/unity에 저장 https://github.com/Unity-Technologies/ml-agents Unity-Technologies/ml-agents Unity Machine Learning Agents Toolkit. Contribute to Unity-Technologies/ml-agents development by creating an account on GitHub. github.com ml agent 세팅 https://cafe.naver.com/gameprogramming7 종로 더조은 게임 개발자 과정 3기 : 네이버 카..
-
06/24 네이버로그인게임 플랫폼 응용프로그래밍 2021. 6. 24. 14:39
https://developers.naver.com/main/ NAVER Developers 네이버 오픈 API들을 활용해 개발자들이 다양한 애플리케이션을 개발할 수 있도록 API 가이드와 SDK를 제공합니다. 제공중인 오픈 API에는 네이버 로그인, 검색, 단축URL, 캡차를 비롯 기계번역, 음 developers.naver.com 모바일 웹으로 어플리케이션 등록 node.js 서버 만들기 naver-login 폴더 생성 npm init -y npm i express nodemon app.js 생성 const express = require('express'); const app = express(); app.get('/', (req, res) => { res.send('hello express'); ..