怎样用Google APIs和Google的应用系统进行集成(8)----怎样把Google Blogger(博客)的JSON Schema转换成XML的Schema(XSD)?
在Google RESTFul API中,Google Blogger API(Google博客API)应该和我们的生活离得近期;由于差点儿非常多人每天都在看博客,都在写博客,都听说过博客。在前面的Google的应用系统进行集成(5)和Google的应用系统进行集成(6)的系列文章中。我们提到了怎样把Google
Calendar和Google Tasks的JSON Schema转换成XML的XSD的Schema。从博客的訪问量来看,还是有非常多志同道合的朋友们对这个比較感兴趣,因此,这个章节。我继续给大家奉献和分享一下怎样把Google Blogger的JSON Schema转换成XML的Schema(XSD)。首先我们先列出Google Blogger的JSON的Schema(https://www.googleapis.com/discovery/v1/apis/blogger/v3/rest)
watermark/2/text/aHR0cDovL2Jsb2cuY3Nkbi5uZXQvY2hhbmNlaW4wMDc=/font/5a6L5L2T/fontsize/400/fill/I0JBQkFCMA==/dissolve/70/gravity/Center">
那么。怎样把Google Blogger的JSON Schema转换成XML的XSD Schema?XML的Schema将会是什么样子的呢?请參考以下转换实现。
<?xml version="1.0" encoding="UTF-8"? > <xs:schema xmlns:xs="http://www.w3.org/2001/XMLSchema"
elementFormDefault="qualified"
attributeFormDefault="unqualified">
<xs:complexType name="Blog">
<xs:sequence>
<xs:element name="customMetaData" type="xs:string" form="unqualified" minOccurs="0"/>
<xs:element name="description" type="xs:string" form="unqualified" minOccurs="0"/>
<xs:element name="id" type="xs:string" form="unqualified" minOccurs="0"/>
<xs:element name="kind" type="xs:string" form="unqualified" minOccurs="0"/>
<xs:element name="locale" type="locale" form="unqualified" minOccurs="0"/>
<xs:element name="name" type="xs:string" form="unqualified" minOccurs="0"/>
<xs:element name="pages" type="pages" form="unqualified" minOccurs="0"/>
<xs:element name="posts" type="posts" form="unqualified" minOccurs="0"/>
<xs:element name="published" type="xs:string" form="unqualified" minOccurs="0"/>
<xs:element name="selfLink" type="xs:string" form="unqualified" minOccurs="0"/>
<xs:element name="updated" type="xs:string" form="unqualified" minOccurs="0"/>
<xs:element name="url" type="xs:string" form="unqualified" minOccurs="0"/>
</xs:sequence>
</xs:complexType>
<xs:complexType name="BlogList">
<xs:sequence>
<xs:element name="blogUserInfos" type="BlogUserInfo" form="unqualified" minOccurs="0" maxOccurs="unbounded"/>
<xs:element name="items" type="Blog" form="unqualified" minOccurs="0" maxOccurs="unbounded"/>
<xs:element name="kind" type="xs:string" form="unqualified" minOccurs="0"/>
</xs:sequence>
</xs:complexType>
<xs:complexType name="BlogPerUserInfo">
<xs:sequence>
<xs:element name="blogId" type="xs:string" form="unqualified" minOccurs="0"/>
<xs:element name="hasAdminAccess" type="xs:boolean" form="unqualified" minOccurs="0"/>
<xs:element name="kind" type="xs:string" form="unqualified" minOccurs="0"/>
<xs:element name="photosAlbumKey" type="xs:string" form="unqualified" minOccurs="0"/>
<xs:element name="role" type="xs:string" form="unqualified" minOccurs="0"/>
<xs:element name="userId" type="xs:string" form="unqualified" minOccurs="0"/>
</xs:sequence>
</xs:complexType>
<xs:complexType name="BlogUserInfo">
<xs:sequence>
<xs:element name="blog" type="Blog" form="unqualified" minOccurs="0" maxOccurs="unbounded"/>
<xs:element name="blog_user_info" type="BlogPerUserInfo" form="unqualified" minOccurs="0" maxOccurs="unbounded"/>
<xs:element name="kind" type="xs:string" form="unqualified" minOccurs="0"/>
</xs:sequence>
</xs:complexType>
<xs:complexType name="Blogimages">
<xs:sequence>
<xs:element name="items" type="Blogitems" form="unqualified" minOccurs="0" maxOccurs="unbounded"/>
</xs:sequence>
</xs:complexType>
<xs:complexType name="Blogitems">
<xs:sequence>
<xs:element name="url" type="xs:string" form="unqualified" minOccurs="0"/>
</xs:sequence>
</xs:complexType>
<xs:complexType name="Comment">
<xs:sequence>
<xs:element name="author" type="author" form="unqualified" minOccurs="0"/>
<xs:element name="blog" type="blog" form="unqualified" minOccurs="0"/>
<xs:element name="content" type="xs:string" form="unqualified" minOccurs="0"/>
<xs:element name="id" type="xs:string" form="unqualified" minOccurs="0"/>
<xs:element name="inReplyTo" type="inReplyTo" form="unqualified" minOccurs="0"/>
<xs:element name="kind" type="xs:string" form="unqualified" minOccurs="0"/>
<xs:element name="post" type="post" form="unqualified" minOccurs="0"/>
<xs:element name="published" type="xs:string" form="unqualified" minOccurs="0"/>
<xs:element name="selfLink" type="xs:string" form="unqualified" minOccurs="0"/>
<xs:element name="status" type="xs:string" form="unqualified" minOccurs="0"/>
<xs:element name="updated" type="xs:string" form="unqualified" minOccurs="0"/>
</xs:sequence>
</xs:complexType>
<xs:complexType name="CommentList">
<xs:sequence>
<xs:element name="items" type="Comment" form="unqualified" minOccurs="0" maxOccurs="unbounded"/>
<xs:element name="kind" type="xs:string" form="unqualified" minOccurs="0"/>
<xs:element name="nextPageToken" type="xs:string" form="unqualified" minOccurs="0"/>
<xs:element name="prevPageToken" type="xs:string" form="unqualified" minOccurs="0"/>
</xs:sequence>
</xs:complexType>
<xs:complexType name="Page">
<xs:sequence>
<xs:element name="author" type="author" form="unqualified" minOccurs="0"/>
<xs:element name="blog" type="blog" form="unqualified" minOccurs="0"/>
<xs:element name="content" type="xs:string" form="unqualified" minOccurs="0"/>
<xs:element name="id" type="xs:string" form="unqualified" minOccurs="0"/>
<xs:element name="kind" type="xs:string" form="unqualified" minOccurs="0"/>
<xs:element name="published" type="xs:string" form="unqualified" minOccurs="0"/>
<xs:element name="selfLink" type="xs:string" form="unqualified" minOccurs="0"/>
<xs:element name="status" type="xs:string" form="unqualified" minOccurs="0"/>
<xs:element name="title" type="xs:string" form="unqualified" minOccurs="0"/>
<xs:element name="updated" type="xs:string" form="unqualified" minOccurs="0"/>
<xs:element name="url" type="xs:string" form="unqualified" minOccurs="0"/>
</xs:sequence>
</xs:complexType>
<xs:complexType name="PageList">
<xs:sequence>
<xs:element name="items" type="Page" form="unqualified" minOccurs="0" maxOccurs="unbounded"/>
<xs:element name="kind" type="xs:string" form="unqualified" minOccurs="0"/>
</xs:sequence>
</xs:complexType>
<xs:complexType name="Pageviews">
<xs:sequence>
<xs:element name="blogId" type="xs:string" form="unqualified" minOccurs="0"/>
<xs:element name="counts" type="Pageviewsitems" form="unqualified" minOccurs="0" maxOccurs="unbounded"/>
<xs:element name="kind" type="xs:string" form="unqualified" minOccurs="0"/>
</xs:sequence>
</xs:complexType>
<xs:complexType name="Pageviewscounts">
<xs:sequence>
<xs:element name="items" type="Pageviewsitems" form="unqualified" minOccurs="0" maxOccurs="unbounded"/>
</xs:sequence>
</xs:complexType>
<xs:complexType name="Pageviewsitems">
<xs:sequence>
<xs:element name="count" type="xs:string" form="unqualified" minOccurs="0"/>
<xs:element name="timeRange" type="xs:string" form="unqualified" minOccurs="0"/>
</xs:sequence>
</xs:complexType>
<xs:complexType name="Post">
<xs:sequence>
<xs:element name="author" type="author" form="unqualified" minOccurs="0"/>
<xs:element name="blog" type="blog" form="unqualified" minOccurs="0"/>
<xs:element name="content" type="xs:string" form="unqualified" minOccurs="0"/>
<xs:element name="customMetaData" type="xs:string" form="unqualified" minOccurs="0"/>
<xs:element name="id" type="xs:string" form="unqualified" minOccurs="0"/>
<xs:element name="images" type="Blogimages" form="unqualified" minOccurs="0" maxOccurs="unbounded"/>
<xs:element name="kind" type="xs:string" form="unqualified" minOccurs="0"/>
<xs:element name="labels" form="unqualified" type="xs:string" minOccurs="0" maxOccurs="unbounded"/>
<xs:element name="location" type="location" form="unqualified" minOccurs="0"/>
<xs:element name="published" type="xs:string" form="unqualified" minOccurs="0"/>
<xs:element name="replies" type="replies" form="unqualified" minOccurs="0"/>
<xs:element name="selfLink" type="xs:string" form="unqualified" minOccurs="0"/>
<xs:element name="status" type="xs:string" form="unqualified" minOccurs="0"/>
<xs:element name="title" type="xs:string" form="unqualified" minOccurs="0"/>
<xs:element name="titleLink" type="xs:string" form="unqualified" minOccurs="0"/>
<xs:element name="updated" type="xs:string" form="unqualified" minOccurs="0"/>
<xs:element name="url" type="xs:string" form="unqualified" minOccurs="0"/>
</xs:sequence>
</xs:complexType>
<xs:complexType name="PostList">
<xs:sequence>
<xs:element name="items" type="Post" form="unqualified" minOccurs="0" maxOccurs="unbounded"/>
<xs:element name="kind" type="xs:string" form="unqualified" minOccurs="0"/>
<xs:element name="nextPageToken" type="xs:string" form="unqualified" minOccurs="0"/>
</xs:sequence>
</xs:complexType>
<xs:complexType name="PostPerUserInfo">
<xs:sequence>
<xs:element name="blogId" type="xs:string" form="unqualified" minOccurs="0"/>
<xs:element name="hasEditAccess" type="xs:boolean" form="unqualified" minOccurs="0"/>
<xs:element name="kind" type="xs:string" form="unqualified" minOccurs="0"/>
<xs:element name="postId" type="xs:string" form="unqualified" minOccurs="0"/>
<xs:element name="userId" type="xs:string" form="unqualified" minOccurs="0"/>
</xs:sequence>
</xs:complexType>
<xs:complexType name="PostUserInfo">
<xs:sequence>
<xs:element name="kind" type="xs:string" form="unqualified" minOccurs="0"/>
<xs:element name="post" type="Post" form="unqualified" minOccurs="0" maxOccurs="unbounded"/>
<xs:element name="post_user_info" type="PostPerUserInfo" form="unqualified" minOccurs="0" maxOccurs="unbounded"/>
</xs:sequence>
</xs:complexType>
<xs:complexType name="PostUserInfosList">
<xs:sequence>
<xs:element name="items" type="PostUserInfo" form="unqualified" minOccurs="0" maxOccurs="unbounded"/>
<xs:element name="kind" type="xs:string" form="unqualified" minOccurs="0"/>
<xs:element name="nextPageToken" type="xs:string" form="unqualified" minOccurs="0"/>
</xs:sequence>
</xs:complexType>
<xs:complexType name="User">
<xs:sequence>
<xs:element name="about" type="xs:string" form="unqualified" minOccurs="0"/>
<xs:element name="blogs" type="blogs" form="unqualified" minOccurs="0"/>
<xs:element name="created" type="xs:string" form="unqualified" minOccurs="0"/>
<xs:element name="displayName" type="xs:string" form="unqualified" minOccurs="0"/>
<xs:element name="id" type="xs:string" form="unqualified" minOccurs="0"/>
<xs:element name="kind" type="xs:string" form="unqualified" minOccurs="0"/>
<xs:element name="locale" type="locale" form="unqualified" minOccurs="0"/>
<xs:element name="selfLink" type="xs:string" form="unqualified" minOccurs="0"/>
<xs:element name="url" type="xs:string" form="unqualified" minOccurs="0"/>
</xs:sequence>
</xs:complexType>
<xs:complexType name="author">
<xs:sequence>
<xs:element name="displayName" type="xs:string" form="unqualified" minOccurs="0"/>
<xs:element name="id" type="xs:string" form="unqualified" minOccurs="0"/>
<xs:element name="image" type="image" form="unqualified" minOccurs="0"/>
<xs:element name="url" type="xs:string" form="unqualified" minOccurs="0"/>
</xs:sequence>
</xs:complexType>
<xs:complexType name="blog">
<xs:sequence>
<xs:element name="id" type="xs:string" form="unqualified" minOccurs="0"/>
</xs:sequence>
</xs:complexType>
<xs:complexType name="blogs">
<xs:sequence>
<xs:element name="selfLink" type="xs:string" form="unqualified" minOccurs="0"/>
</xs:sequence>
</xs:complexType>
<xs:complexType name="image">
<xs:sequence>
<xs:element name="url" type="xs:string" form="unqualified" minOccurs="0"/>
</xs:sequence>
</xs:complexType>
<xs:complexType name="inReplyTo">
<xs:sequence>
<xs:element name="id" type="xs:string" form="unqualified" minOccurs="0"/>
</xs:sequence>
</xs:complexType>
<xs:complexType name="locale">
<xs:sequence>
<xs:element name="country" type="xs:string" form="unqualified" minOccurs="0"/>
<xs:element name="language" type="xs:string" form="unqualified" minOccurs="0"/>
<xs:element name="variant" type="xs:string" form="unqualified" minOccurs="0"/>
</xs:sequence>
</xs:complexType>
<xs:complexType name="location">
<xs:sequence>
<xs:element name="lat" type="xs:double" form="unqualified" minOccurs="0"/>
<xs:element name="lng" type="xs:double" form="unqualified" minOccurs="0"/>
<xs:element name="name" type="xs:string" form="unqualified" minOccurs="0"/>
<xs:element name="span" type="xs:string" form="unqualified" minOccurs="0"/>
</xs:sequence>
</xs:complexType>
<xs:complexType name="pages">
<xs:sequence>
<xs:element name="selfLink" type="xs:string" form="unqualified" minOccurs="0"/>
<xs:element name="totalItems" type="xs:string" form="unqualified" minOccurs="0"/>
</xs:sequence>
</xs:complexType>
<xs:complexType name="post">
<xs:sequence>
<xs:element name="id" type="xs:string" form="unqualified" minOccurs="0"/>
</xs:sequence>
</xs:complexType>
<xs:complexType name="posts">
<xs:sequence>
<xs:element name="items" type="Post" form="unqualified" minOccurs="0" maxOccurs="unbounded"/>
<xs:element name="selfLink" type="xs:string" form="unqualified" minOccurs="0"/>
<xs:element name="totalItems" type="xs:string" form="unqualified" minOccurs="0"/>
</xs:sequence>
</xs:complexType>
<xs:complexType name="replies">
<xs:sequence>
<xs:element name="items" type="Comment" form="unqualified" minOccurs="0" maxOccurs="unbounded"/>
<xs:element name="selfLink" type="xs:string" form="unqualified" minOccurs="0"/>
<xs:element name="totalItems" type="xs:string" form="unqualified" minOccurs="0"/>
</xs:sequence>
</xs:complexType>
<xs:element name="Blog" type="Blog"/>
<xs:element name="BlogList" type="BlogList"/>
<xs:element name="BlogPerUserInfo" type="BlogPerUserInfo"/>
<xs:element name="BlogUserInfo" type="BlogUserInfo"/>
<xs:element name="Comment" type="Comment"/>
<xs:element name="CommentList" type="CommentList"/>
<xs:element name="Page" type="Page"/>
<xs:element name="PageList" type="PageList"/>
<xs:element name="Pageviews" type="Pageviews"/>
<xs:element name="Post" type="Post"/>
<xs:element name="PostList" type="PostList"/>
<xs:element name="PostPerUserInfo" type="PostPerUserInfo"/>
<xs:element name="PostUserInfo" type="PostUserInfo"/>
<xs:element name="PostUserInfosList" type="PostUserInfosList"/>
<xs:element name="User" type="User"/>
</xs:schema>
怎样用Google APIs和Google的应用系统进行集成(8)----怎样把Google Blogger(博客)的JSON Schema转换成XML的Schema(XSD)?的更多相关文章
- 怎样用Google APIs和Google的应用系统进行集成(5)----怎样把Google Tasks的JSON Schema转换成XML的Schema(XSD)?
前面说了一些Google API的介绍,可是在实际的开发其中,我们可能须要把Google RESTful API返回的JSON数据转换成XML数据输入到第三方系统,这在企业应用集成里面很的常见. 那么 ...
- 邮件发布google blogger 博客
<?php $to = "@gmail.com";$subject = "Test mail";$message = "Hello! This ...
- 怎样用Google APIs和Google的应用系统进行集成(4)----获得Access Token以通过一些Google APIs的OAuth2认证
在上篇文章中: "怎样用Google APIs和Google的应用系统进行集成(3)----调用发现Google APIs的RESTful的服务"一文中,我们直接用jdk的java ...
- 【转载】国内网站博客数据统计选免费Google Analytics还是百度统计
[转载]国内网站博客数据统计选免费Google Analytics还是百度统计 Google Analytics谷歌统计是我用的第一个网站统计工具,当然现在也一直在用.Google Analytics ...
- 让搭建在 Github Pages 上的 Hexo 博客可以被 Google 搜索到
title: 让搭建在Github Pages上的Hexo博客可以被Google搜索到 date: 2019-05-30 23:35:44 tags: 配置 --- 准备工作 搭建好的博客 npm & ...
- Hexo博客maupassant主题添加Google Adsense广告
自从在 Github Page 落户以后,很长一段时间使用的是极简且有点艺术范儿的 fexo 主题,而不是大名鼎鼎的 next 主题.后来偶然发现了符合我审美的Hexo博客 maupassant 主题 ...
- 谷歌正式发布Google APIs Client Library for .NET
好消息,特大好消息! 英文原文:Google API library for .NET paves the way for Google services on Windows phone 本月 17 ...
- Android SDK Manager Google Apis 下载
本意是想利用google的gcm来实装android推送功能的,很遗憾, google貌似已经停止提供啥服务给国内了,或者说国内想继续使用google 服务暂时变得几乎不可能了.找了个代理来进行goo ...
- 怎样用Google APIs和Google的应用系统进行集成(3)----调用Google 发现(Discovery)API的RESTful服务
说了这么多,那么首先同意我以Google Discovery RESTful服务为例,给大家演示怎样用最普通的Java代码调用Google Discovery RESTful服务. 引言: 在&quo ...
随机推荐
- 「 Luogu P2801 」 教主的魔法——分块
# 解题思路 修改,就是一个区间修改的常规操作,但是为了迎合查询的需要,对两端的不完整的块需要暴力重构,重新进行排序操作,保证每一块都是单调上升的顺序. 然后再说进行查询的操作,起初,我们需要在每一个 ...
- java读取配置文件的推荐方法getResource、getResourceAsStream
在java开发中经常会读取配置文件,如果把文件路径写死,就太LOW了,也不符合编码规范. 在网上找了一些资料后,发现有两种方法:xxx.class.getResource("") ...
- Java应用异常状态监测
阿里巴巴中间件技术专栏 老板最近分派了一个任务,说线上客户在部署应用的时候发生了系统级别的OOM,触发了OOM Killer杀掉了应用,让我们解决这个问题. 对于这个任务,我从如下几点开始调研.分析与 ...
- 表单中的ngModelController
测试表单中的ngController.直接看红字结论部分即可 <!DOCTYPE html> <html lang="en"> <head> & ...
- CSS3--- 颜色
1.RGB是一种色彩标准,是由红(R).绿(G).蓝(B)的变化以及相互叠加来得到各式各样的颜色.RGBA是在RGB的基础上增加了控制alpha透明度的参数. 语法:color:rgba(R,G,B, ...
- TeeChart Pro VCL/FMX教程之使用函数
函数类型 函数特点 TeeChart Pro功能是一个系列,几乎可以是任何系列类型,应用代数函数,数据源是另一个图表系列. 所有函数都派生自TTeeFunction组件并继承TeeFunction的P ...
- "转成"
在java中这样转 StringEscapeUtils.unescapeHtml(soapResponseData); 在js中这样转 str.replace(""",& ...
- Android GradientDrawable的XML实现
Android GradientDrawable的XML实现 Android GradientDrawable与附录文章1类似,这次以XML而非Java代码形式实现.比如写好一个shape文件放 ...
- FZU-1881-Problem 1881 三角形问题,打表二分查找~~
B - 三角形问题 Time Limit:1000MS Memory Limit:32768KB 64bit IO Format:%I64d & %I64u Descripti ...
- Linux核心参数Shmmax,shmall,shmni
Linux 下核心参数调整 kernel.shmmax shmmax是核心参数中最重要的参数之一,用于定义单个共享内存段的最大值,shmmax设置应足够大,能在一个共享内存段下容纳下整个的SGA,设置 ...