얼마전 Google G Suite Legacy free를 Workspace로 업그레이드 한 사람들에 대해서 

 

다시 무료 버전으로 돌려놓는 작업이 완료되었다는 소식을 알려드린 바 있습니다.

 

https://tesll.com/353

 

Google G Suite - Legacy Free - 서비스는 계속되나..

구글이 많은 사용자들의 항의에 따라서 Google G Suite Legacy Free 를 유지하기로 했었습니다. 이에 따라 구글의 유료화 안내에 따라 Google Workspace  Business Starter 의 유료 구독..

tesll.com

 

그런데 사전에 유료버전(Workspace Business Starter)로 전환하지 않은 경우에도..

 

위의 혜택을 얻을 수 있는 방법이 공개되어서 소개합니다.

 

 

주의사항: 현시점 (2022년 7월 25일)에는 가능하나 이후에는 안될 가능성이 있으며 개인별로도 가/부가 다를 수 있음.

 

얻을 수 있는 것

1. 1개의 계정당 300명의 사용자 (무료버전은 10명)

2. 1개의 계정당 30GB의 저장용량 (무료버전은 15GB)

3. 보조도메인(Secondary domain) 사용가능 (무료버전은 별칭 도메인만 사용 가능했음)

 

방법

1. G Sute Legacy 계정에 로그인 https://admin.google.com 

2. 결제 - 구독 메뉴에서 "업그레이드"를 선택하고 결제 정보 입력 (요금제는 탄력 요금제 선택하며 바로 결제 되지 않으니 괜찮음)

 

3. Workspace Business Starter 로 업그레이드된 것을 확인 한 뒤에 아래 링크 접속

https://support.google.com/a/answer/2855120?hl=en

 

4. 파란색의 "I used my account for personal use" 버튼 클릭

 

5. 이후 화면에서 I Confirm~~~ 클릭시 무료 계정으로 즉시 전환됨.

 

 

출처: reddit

구글 AJAX 검색 API를 자바에서 호출하는 방법이다.

import java.io.*;
import java.net.*;

public class GoogleAJAXSearchAPI {
    private static String endpointURL = "http://www.google.com/uds/GwebSearch?"+
          "callback=GwebSearch.Raw" +
          "Completion&context=0&lstkp=0&rsz=small&hl=en&" +
          "sig=8656f49c146c5220e273d16b4b6978b2&q=Axis2&key=xxxxxxxxxxxxxxxxxx&v=1.0";

    public static void main(String[] args) throws Exception {
        URLConnection uc = new URL(endpointURL).openConnection();
        HttpURLConnection connection = (HttpURLConnection) uc;
        connection.setDoOutput(true);
        connection.setRequestMethod("GET");
        connection.connect();
       
        String line;
        InputStream inputStream = null;
        try {
            inputStream = connection.getInputStream();
        } catch (IOException e) {
            inputStream = connection.getErrorStream();
        }
        BufferedReader rd = new BufferedReader(new InputStreamReader(inputStream));
        while ((line = rd.readLine()) != null) {
            System.out.println(line);
        }
    }
}

+ Recent posts