RSS <guid> 요소
정의와 사용법
<guid> 요소는 item에 독특한 식별자를 정의합니다.
안내와 주석
안내:GUID = 글로벌 고유 식별자
비고:아그리게이터는 guid를 문자열로 간주해야 합니다. 고정된 문법 규칙은 없으며, 문서의 생성자가 유일성을 결정합니다.
속성
속성 | 설명 |
---|---|
isPermaLink | 선택 사항입니다. true로 설정되면, 리더가 해당 항목을 모든 항목의 URL로 인식합니다. 기본 값은 True입니다. false로 설정되면, guid가 URL로 인식되지 않을 수 있습니다. |
예제
<?xml version="1.0" encoding="ISO-8859-1" ?> <rss version="2.0"> <channel> <title>CodeW3C.com Home Page</title> <link>http://www.codew3c.com</link> <description>Free web building tutorials</description> <item> <title>RSS Tutorial</title> <link>http://www.codew3c.com/rss</link> <description>New RSS tutorial on CodeW3C.com</description> <guid>http://www.codew3c.com/rss/item5803</guid> </item> </channel> </rss>