일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | |||||
3 | 4 | 5 | 6 | 7 | 8 | 9 |
10 | 11 | 12 | 13 | 14 | 15 | 16 |
17 | 18 | 19 | 20 | 21 | 22 | 23 |
24 | 25 | 26 | 27 | 28 | 29 | 30 |
- Python
- apt update
- api사용해서 google drive에 폴더만들기
- opencv
- vtk
- ubuntu
- rotation
- 아두이노
- Winform
- opencv resize
- vi
- google drive upload
- 우분투 opencv 설치
- opengl
- esp32
- google drive 업로드
- Google Drive API
- libopencv-dev
- 정보처리기사
- annotating
- vim
- c#
- sshkey
- NodeMCU
- 아두이노 설치
- opencv apt설치
- 정보처리기사후기
- vim명령어
- translation
- 고정ip할당
- Today
- Total
목록Google Drive API (4)
내가 보려고 만든 블로그
https://console.cloud.google.com/apis/ Google 클라우드 플랫폼 로그인 Google 클라우드 플랫폼으로 이동 accounts.google.com https://www.youtube.com/watch?v=1y0-IfRW114 이 동영상보고 oauth계정만드는 부분만 따라했다. 코드부분은 내가 c#을 쓰기때문에 따라하지않았음. api코드 설정하는건 이렇게 했다. private static DriveService GetService() { var tokenResponse = new TokenResponse { AccessToken = "엑세스토큰", RefreshToken = "리플레시 토큰", }; var applicationName = "프로젝트이름"; // Use the..
public static string DriveUploadBasic(string filePath, string forderID) { var credential = GoogleCredential.FromFile(PathToServiceAccountKeyFile) .CreateScoped(DriveService.Scope.Drive); // Create Drive API service. var service = new DriveService(new BaseClientService.Initializer { HttpClientInitializer = credential, //ApplicationName = "Drive API Snippets" }); // Upload file photo.jpg on drive...
// service account 계정만들고 다운받은 json파일 경로 private const string PathToServiceAccountKeyFile = @"C:\Users\\Desktop\mygoogleapi.json"; // upload할 파일경로 + 이름 private const string UploadFileName = @"C:\Users\Desktop\aaa.txt"; //구글드라이브의 폴더주소 private const string DirectoryId = "1QM......."; 구글드라이브에 들어가서 폴더 하나 만들고 그 폴더에서 우클릭하고 공유를 누른다. json파일을 보면 client_email 옆에 텍스트가 있는데 그것을 복사해서 공유에 쓰고 공유 버튼을 누른다. 그리고 tes..
https://www.daimto.com/upload-file-to-google-drive/ Upload file to Google drive Are you working on an application where you would like to upload a file to Google drive. There are some changes from google drive v2 to the new Google drive v3 and a lot of the samples out there for v2 wont work for the new Google drive API v3. www.daimto.com 보고 따라함.. winform에서 실행하는거라서 코드 변경 함. https://www.youtube.co..