승인 필요
제자리에 있는 타임라인 항목을 업데이트합니다. 이 메서드는 패치 시멘틱스를 지원합니다. 예시 보기
요청
HTTP 요청
PATCH https://www.googleapis.com/mirror/v1/timeline/id
매개변수
매개변수 이름 | 값 | 설명 |
---|---|---|
경로 매개변수 | ||
id |
string |
타임라인 항목의 ID입니다. |
승인
이 요청에는 다음 범위 중 최소 하나를 사용하여 인증이 필요합니다. (인증 및 승인에 대해 자세히 알아보기)
범위 |
---|
https://www.googleapis.com/auth/glass.timeline |
https://www.googleapis.com/auth/glass.location |
요청 본문
요청 본문에 패치 의미 체계의 규칙에 따라 타임라인 리소스의 관련 부분을 제공합니다.
응답
요청에 성공할 경우 이 메서드는 응답 본문에 타임라인 리소스를 반환합니다.
예
참고: 이 메서드에 제공되는 코드 예시가 지원되는 모든 프로그래밍 언어를 나타내는 것은 아닙니다. 지원되는 언어 목록은 클라이언트 라이브러리 페이지를 참조하세요.
자바
Java 클라이언트 라이브러리를 사용합니다.
import com.google.api.services.mirror.Mirror; import com.google.api.services.mirror.model.TimelineItem; import java.io.IOException; public class MyClass { // ... /** * Update the text of an existing timeline item. * * @param service Authorized Mirror service. * @param itemId ID of the timeline item to update. * @param newText New text content for the timeline item. * @return Updated timeline item on success, {@code null} otherwise. */ public static TimelineItem patchTimelineItem(Mirror service, String itemId, String newText) { TimelineItem patchedTimelineItem = new TimelineItem(); patchedTimelineItem.setText(newText); try { return service.timeline().patch(itemId, patchedTimelineItem).execute(); } catch (IOException e) { System.err.println("An error occurred: " + e); return null; } } // ... }
.NET
.NET 클라이언트 라이브러리를 사용합니다.
using System; using Google.Apis.Mirror.v1; using Google.Apis.Mirror.v1.Data; public class MyClass { // ... /// <summary> /// Update the text of an existing timeline item. /// </summary> /// <param name='service'>Authorized Mirror service.</param> /// <param name='itemId'>ID of the timeline item to update.</param> /// <param name='newText'> /// New text content for the timeline item. /// </param> /// <returns> /// Updated timeline item on success, null otherwise. /// </returns> public static TimelineItem PatchTimelineItem(MirrorService service, String itemId, String newText) { TimelineItem patchedTimelineItem = new TimelineItem() { Text = newText }; try { return service.Timeline.Patch(patchedTimelineItem, itemId).Fetch(); } catch (Exception e) { Console.WriteLine("An error occurred: " + e.Message); return null; } } // ... }
PHP
PHP 클라이언트 라이브러리를 사용합니다.
/** * Update the text of an existing timeline item. * * @param Google_MirrorService $service Authorized Mirror service. * @param string $itemId ID of the timeline item to update. * @param string $newText New text content for the timeline item. * @return Google_TimelineItem Updated timeline item on success, * null otherwise. */ function patchTimelineItem($service, $itemId, $newText) { try { $patchedTimelineItem = new Google_TimelineItem(); $patchedTimelineItem->setText($text); return $service->timeline->patch($itemId, $patchedTimelineItem); } catch (Exception $e) { print 'An error occurred: ' . $e->getMessage(); return null; } }
Python
Python 클라이언트 라이브러리를 사용합니다.
from apiclient import errors # ... def patch_timeline_item(service, item_id, new_text): """Update the text of an existing timeline item. Args: service: Authorized Mirror service. item_id: ID of the timeline item to update. new_text: New text content for the timeline item. Returns: Updated timeline item on success, None otherwise. """ patched_timeline_item = {'text': new_text} try: return service.timeline().patch( id=item_id, body=patched_timeline_item).execute() except errors.HttpError, error: print 'An error occurred: %s' % error return None
Ruby
## # Update the text of an existing Timeline Item. # # @param [Google::APIClient] client # Authorized client instance. # @param [String] item_id # ID of the timeline item to update. # @param [String] new_text # New text content for the timeline item. # @return [Google::APIClient::Schema::Mirror::V1::TimelineItem] # Updated timeline item on success, nil otherwise. def patch_timeline_item(client, item_id, new_text) mirror = client.discovered_api('mirror', 'v1') result = client.execute( :api_method => mirror.timeline.patch, :body_object => { 'text' => new_text }, :parameters => { 'id' => item_id }) if result.success? return result.data end puts "An error occurred: #{result.data['error']['message']}" end
Go
Go 클라이언트 라이브러리를 사용합니다.
import ( "code.google.com/p/google-api-go-client/mirror/v1" "fmt" ) // PatchTimelineItem updates the text of an existing timeline item. func PatchTimelineItem(g *mirror.Service, itemId string, newText string) ( *mirror.TimelineItem, error) { t := &mirror.TimelineItem{Text: newText} r, err := g.Timeline.Patch(itemId, t).Do() if err != nil { fmt.Printf("An error occurred: %v\n", err) return nil, err } return r, nil }
원시 HTTP
클라이언트 라이브러리를 사용하지 않습니다.
PATCH /mirror/v1/timeline/timeline item id HTTP/1.1 Host: www.googleapis.com Authorization: Bearer auth token Content-Type: application/json Content-Length: 26 { "text": "Hello world" }