紫微排盘
<p>[TOC]</p>
<h3>接口描述</h3>
<ul>
<li>紫微排盘是以人出生的年、月、日、时确定十二宫的位置,构成紫微命盘,结合各宫的星群组合,牵系周易卦爻,来预测一个人的运程和吉凶祸福。注意:本接口返回数据的gong_pan部分有12个数组,下标从0~11,当你画好12宫图的时候,参考下面的图片将对应数组里的所有元素放在对应宫位即可。</li>
</ul>
<h3>请求地址</h3>
<p><code>https://api.jumdata.com/horoscope/fate</code></p>
<h3>请求方式</h3>
<ul>
<li>POST</li>
</ul>
<h3>请求格式</h3>
<ul>
<li>x-www-form-urlencoded</li>
</ul>
<h3>请求参数</h3>
<table>
<thead>
<tr>
<th>名称</th>
<th>类型</th>
<th>必须</th>
<th><div style="width:400px">说明</div></th>
</tr>
</thead>
<tbody>
<tr>
<td>appId</td>
<td>String</td>
<td>是</td>
<td>服务商分配的唯一标识</td>
</tr>
<tr>
<td>timestamp</td>
<td>Long</td>
<td>是</td>
<td>当前时间戳(毫秒数)</td>
</tr>
<tr>
<td>sign</td>
<td>String</td>
<td>是</td>
<td>签名,详见签名算法说明</td>
</tr>
<tr>
<td>name</td>
<td>String</td>
<td>是</td>
<td>姓名</td>
</tr>
<tr>
<td>sex</td>
<td>String</td>
<td>是</td>
<td>性别 0:男 1:女</td>
</tr>
<tr>
<td>type</td>
<td>String</td>
<td>是</td>
<td>历类型 0:农历 1:公历</td>
</tr>
<tr>
<td>birthDay</td>
<td>String</td>
<td>是</td>
<td>出生年月日时分 格式yyyyMMddHHmm 譬如202509132155 </td>
</tr>
<tr>
<td>sect</td>
<td>String</td>
<td>否</td>
<td>流派 例:1:晚子时日柱算明天 2:晚子时日柱算当天 默认:1</td>
</tr>
<tr>
<td>zhen</td>
<td>String</td>
<td>否</td>
<td>是否真太阳时 例:1:考虑真太阳时 2:不考虑真太阳时 默认:2</td>
</tr>
<tr>
<td>province</td>
<td>String</td>
<td>否</td>
<td>省 例:北京市 非必传,但是如果考虑真太阳时,省和市都必传 详见<a href="<a href="https://www.showdoc.com.cn/jumdata/11558915168150800">真太阳时城市列表</a>">https://www.showdoc.com.cn/jumdata/11558915168150800">真太阳时城市列表</a></a>; </td>
</tr>
<tr>
<td>city</td>
<td>String</td>
<td>否</td>
<td>市 例:北京 非必传,但是如果考虑真太阳时,省和市都必传 详见<a href="<a href="https://www.showdoc.com.cn/jumdata/11558915168150800">真太阳时城市列表</a>">https://www.showdoc.com.cn/jumdata/11558915168150800">真太阳时城市列表</a></a>; </td>
</tr>
<tr>
<td>lang</td>
<td>String</td>
<td>否</td>
<td>语言:zh-cn 、zh-tw 默认:zh-cn </td>
</tr>
</tbody>
</table>
<h3>签名算法说明</h3>
<p><code>sign = sha256(appId + appSecret + timestamp)</code></p>
<p>用服务商分配的 appId、服务商分配的 appSecret,当前时间时间戳 timestamp,按上述顺序拼接成字符串,再进行 sha256 哈希得到。如下:</p>
<pre><code class="language-java">String appId = &quot;xyzxy2121zxyz&quot;;
String timestamp = &quot;1555378976238&quot;;
String appSecret = &quot;efcefcef1121cefcefc1212121&quot;;
String str = appId + appSecret + timestamp;
String sign = sha256(str);</code></pre>
<h3>成功返回样例</h3>
<pre><code class="language-json">{
&quot;code&quot;: 200,//返回码,详见返回码说明
&quot;msg&quot;: &quot;成功&quot;, //code对应的描述
&quot;taskNo&quot;: &quot;297667220221147391480569&quot;,//本次请求号
&quot;charge&quot;: true,//计费标志
&quot;data&quot;: {
&quot;base_info&quot;: { //八字基本信息
&quot;zhen&quot;: { //考虑真太阳时才会有此字段,不考虑真太阳时就没有这个字段
&quot;province&quot;: &quot;北京市&quot;, //真太阳时省市
&quot;city&quot;: &quot;北京&quot;, //真太阳时省市
&quot;jingdu&quot;: &quot;116.46&quot;, //真太阳经度
&quot;weidu&quot;: &quot;39.92&quot;, //真太阳纬度
&quot;shicha&quot;: &quot;晚0小时14分10秒&quot; //考虑真太阳的时差
},
&quot;sex&quot;: &quot;坤造&quot;, //性别,乾男 坤女
&quot;name&quot;: &quot;张三&quot;, //姓名
&quot;age&quot;: 36, //年龄
&quot;gongli&quot;: &quot;1988年11月08日12时20分&quot;, //公历 年月日时份
&quot;nongli&quot;: &quot;1988年九月廿九日午时&quot;, //农历 年月日时份
&quot;mingsihua&quot;: &quot;机阴贪弼&quot;, //命四化:机阴贪弼
&quot;minggong&quot;: &quot;辰&quot;, //命宫:辰
&quot;shengong&quot;: &quot;辰&quot;, //身宫:辰
&quot;zidou&quot;: &quot;戌&quot;, //子斗:辰
&quot;liudou&quot;: &quot;寅&quot;, //流斗: 寅
&quot;mingju&quot;: &quot;土五局&quot;, //天盘局:土五局
&quot;mingzhu&quot;: &quot;廉贞&quot;, //命主:廉贞
&quot;shenzhu&quot;: &quot;文昌&quot;, //身主:文昌
&quot;yeargz&quot;: &quot;戊辰&quot;, //年干支:戊辰
&quot;monthgz&quot;: &quot;癸亥&quot;, //月干支:癸亥
&quot;daygz&quot;: &quot;丁卯&quot;, //日干支:丁卯
&quot;hourgz&quot;: &quot;丙午&quot;, //时干支:丙午
&quot;yearnayin&quot;: &quot;大林木&quot;, //年纳音:大林木
&quot;monthnayin&quot;: &quot;大海水&quot;, //月纳音:大海水
&quot;daynayin&quot;: &quot;炉中火&quot;, //日纳音:炉中火
&quot;hournayin&quot;: &quot;天河水&quot; //时纳音:天河水
&quot;gendertype&quot;: &quot;阴女&quot;, //紫微性别阴阳
},
&quot;gong_pan&quot;: [ // 12宫盘
{ //gong_pan[0]信息
&quot;minggong&quot;: &quot;疾厄宫&quot;, //命宫:疾厄宫
&quot;yinshou&quot;: &quot;癸亥&quot;, //寅首:癸亥
&quot;jiangxing&quot;: &quot;亡神&quot;, //将星:亡神
&quot;changsheng&quot;: &quot;临官&quot;, //长生:临官
&quot;daxian&quot;: &quot;55-64&quot;, //大限:55-64
&quot;xiaoxian&quot;: &quot;龙德&quot;, //小限:龙德
&quot;boshi&quot;: &quot;飞廉&quot;, //博士星:飞廉
&quot;ziweixing&quot;: &quot;&quot;, //紫微星:无
&quot;ziweixing_xingyao&quot;: &quot;&quot;, //紫微星星耀:无
&quot;ziweixing_sihua&quot;: &quot;&quot;, //紫微星四化:无
&quot;tianfuxing&quot;: &quot;太阴&quot;, //天府星:太阴
&quot;tianfuxing_xingyao&quot;: &quot;平&quot;,//天府星星耀:平
&quot;tianfuxing_sihua&quot;: &quot;权&quot;,//天府星四化:权
&quot;monthxing&quot;: &quot;&quot;, //月星:无
&quot;monthxing_xingyao&quot;: &quot;&quot;, //月星星耀:无
&quot;monthxing_sihua&quot;: &quot;&quot;, //月星四化:无
&quot;hourxing&quot;: &quot;&quot;, //时星:无
&quot;hourxing_xingyao&quot;: &quot;&quot;, //时星星耀:无
&quot;hourxing_sihua&quot;: &quot;&quot;, //时星四化:无
&quot;yearganxing&quot;: &quot;&quot;, //年干星:无
&quot;yearganxing_xingyao&quot;: &quot;&quot;, //年干星星耀:无
&quot;yearganxing_sihua&quot;: &quot;&quot;, //年干星四化:无
&quot;yearzhixing&quot;: &quot;红鸾,大耗&quot;, //年支星:红鸾,大耗
&quot;yearzhixing_xingyao&quot;: &quot;陷,旺&quot;, //月支星星耀:陷,旺
&quot;yearzhixing_sihua&quot;: &quot;&quot;, //月支星四化:无
&quot;qitaxing&quot;: &quot;天伤&quot;, //其他星:天伤
&quot;qitaxing_xingyao&quot;: &quot;&quot;, //其他星星耀:无
&quot;qitaxing_sihua&quot;: &quot;&quot;, //其他星四化:无
&quot;ziweixing_desc&quot;: &quot;无紫微星入宫,暂无详解&quot;, //紫微星坐在此宫解析
&quot;tianfuxing_desc&quot;: &quot;太阴星代表疾病和阴暗面,如果出现在疾厄宫中,可能会有一些阴暗或者不顺的事情发生,身体方面也需要特别留意。&quot; //天府星坐在此宫解析
&quot;fuxing_desc&quot;: &quot;此宫副星总体为凶,故不利因素加倍,有利因素减半,加煞。火星入迁移宫,若逢左右、魁钺......&quot;,//辅星详解
},
{ //gong_pan[1]信息
&quot;minggong&quot;: &quot;财帛宫&quot;,
&quot;yinshou&quot;: &quot;甲子&quot;,
&quot;jiangxing&quot;: &quot;将星&quot;,
&quot;changsheng&quot;: &quot;帝旺&quot;,
&quot;daxian&quot;: &quot;45-54&quot;,
&quot;xiaoxian&quot;: &quot;白虎&quot;,
&quot;boshi&quot;: &quot;奏书&quot;,
&quot;ziweixing&quot;: &quot;&quot;,
&quot;ziweixing_xingyao&quot;: &quot;&quot;,
&quot;ziweixing_sihua&quot;: &quot;&quot;,
&quot;tianfuxing&quot;: &quot;贪狼&quot;,
&quot;tianfuxing_xingyao&quot;: &quot;平&quot;,
&quot;tianfuxing_sihua&quot;: &quot;禄&quot;,
&quot;monthxing&quot;: &quot;左辅&quot;,
&quot;monthxing_xingyao&quot;: &quot;平&quot;,
&quot;monthxing_sihua&quot;: &quot;&quot;,
&quot;hourxing&quot;: &quot;台辅&quot;,
&quot;hourxing_xingyao&quot;: &quot;&quot;,
&quot;hourxing_sihua&quot;: &quot;&quot;,
&quot;yearganxing&quot;: &quot;正空&quot;,
&quot;yearganxing_xingyao&quot;: &quot;&quot;,
&quot;yearganxing_sihua&quot;: &quot;&quot;,
&quot;yearzhixing&quot;: &quot;&quot;,
&quot;yearzhixing_xingyao&quot;: &quot;&quot;,
&quot;yearzhixing_sihua&quot;: &quot;&quot;,
&quot;qitaxing&quot;: &quot;&quot;,
&quot;qitaxing_xingyao&quot;: &quot;&quot;,
&quot;qitaxing_sihua&quot;: &quot;&quot;,
&quot;ziweixing_desc&quot;: &quot;无紫微星入宫,暂无详解&quot;,
&quot;tianfuxing_desc&quot;: &quot;贪狼星,代表野心和冲动。在财帛宫中出现,表示财富可能来源于野心和冲动,需要注意财务风险和管理。适合从事需要野心和冲动的行业,如创业、投资、竞争性行业等。&quot;
&quot;fuxing_desc&quot;: &quot;此宫副星总体为吉,故诸多利因素加倍,不利因素减半,加吉。龙池入奴仆宫,主虽然表现平凡.......&quot;,//辅星详解
},
{ //gong_pan[2]信息
&quot;minggong&quot;: &quot;子女宫&quot;,
&quot;yinshou&quot;: &quot;乙丑&quot;,
&quot;jiangxing&quot;: &quot;攀鞍&quot;,
&quot;changsheng&quot;: &quot;衰&quot;,
&quot;daxian&quot;: &quot;35-44&quot;,
&quot;xiaoxian&quot;: &quot;天德&quot;,
&quot;boshi&quot;: &quot;将军&quot;,
&quot;ziweixing&quot;: &quot;天同&quot;,
&quot;ziweixing_xingyao&quot;: &quot;旺&quot;,
&quot;ziweixing_sihua&quot;: &quot;&quot;,
&quot;tianfuxing&quot;: &quot;巨门&quot;,
&quot;tianfuxing_xingyao&quot;: &quot;庙&quot;,
&quot;tianfuxing_sihua&quot;: &quot;&quot;,
&quot;monthxing&quot;: &quot;&quot;,
&quot;monthxing_xingyao&quot;: &quot;&quot;,
&quot;monthxing_sihua&quot;: &quot;&quot;,
&quot;hourxing&quot;: &quot;&quot;,
&quot;hourxing_xingyao&quot;: &quot;&quot;,
&quot;hourxing_sihua&quot;: &quot;&quot;,
&quot;yearganxing&quot;: &quot;天魁,副空&quot;,
&quot;yearganxing_xingyao&quot;: &quot;陷,旺&quot;,
&quot;yearganxing_sihua&quot;: &quot;&quot;,
&quot;yearzhixing&quot;: &quot;寡宿,破碎&quot;,
&quot;yearzhixing_xingyao&quot;: &quot;陷,无&quot;,
&quot;yearzhixing_sihua&quot;: &quot;&quot;,
&quot;qitaxing&quot;: &quot;天贵&quot;,
&quot;qitaxing_xingyao&quot;: &quot;&quot;,
&quot;qitaxing_sihua&quot;: &quot;&quot;,
&quot;ziweixing_desc&quot;: &quot;天同星,代表口才、交际和社交能力。在子女宫中出现,表示子女将来可能会拥有优秀的交际能力和口才,适合从事与人沟通和交流相关的工作,如销售、公关等。&quot;,
&quot;tianfuxing_desc&quot;: &quot;巨门星,代表智慧、才华和学识。在子女宫中出现,表示子女将来可能会有很高的学术成就和专业技能,适合从事需要高水平智力和专业能力的行业,如教育、科研等。&quot;
&quot;fuxing_desc&quot;: &quot;此宫副星总体为吉,故诸多利因素加倍,不利因素减半,加吉。龙池入奴仆宫,主虽然表现平凡.......&quot;,//辅星详解
},
{ //gong_pan[3]信息
&quot;minggong&quot;: &quot;夫妻宫&quot;,
&quot;yinshou&quot;: &quot;甲寅&quot;,
&quot;jiangxing&quot;: &quot;岁驿&quot;,
&quot;changsheng&quot;: &quot;病&quot;,
&quot;daxian&quot;: &quot;25-34&quot;,
&quot;xiaoxian&quot;: &quot;吊客&quot;,
&quot;boshi&quot;: &quot;小耗&quot;,
&quot;ziweixing&quot;: &quot;武曲&quot;,
&quot;ziweixing_xingyao&quot;: &quot;平&quot;,
&quot;ziweixing_sihua&quot;: &quot;&quot;,
&quot;tianfuxing&quot;: &quot;天相&quot;,
&quot;tianfuxing_xingyao&quot;: &quot;庙&quot;,
&quot;tianfuxing_sihua&quot;: &quot;&quot;,
&quot;monthxing&quot;: &quot;右弼,天月&quot;,
&quot;monthxing_xingyao&quot;: &quot;闲&quot;,
&quot;monthxing_sihua&quot;: &quot;科&quot;,
&quot;hourxing&quot;: &quot;&quot;,
&quot;hourxing_xingyao&quot;: &quot;&quot;,
&quot;hourxing_sihua&quot;: &quot;&quot;,
&quot;yearganxing&quot;: &quot;&quot;,
&quot;yearganxing_xingyao&quot;: &quot;&quot;,
&quot;yearganxing_sihua&quot;: &quot;&quot;,
&quot;yearzhixing&quot;: &quot;天哭,天马&quot;,
&quot;yearzhixing_xingyao&quot;: &quot;无,旺&quot;,
&quot;yearzhixing_sihua&quot;: &quot;&quot;,
&quot;qitaxing&quot;: &quot;&quot;,
&quot;qitaxing_xingyao&quot;: &quot;&quot;,
&quot;qitaxing_sihua&quot;: &quot;&quot;,
&quot;ziweixing_desc&quot;: &quot;武曲入夫妻宫,代表着在婚姻中有很强的竞争和进取心,但也需要注意不要让竞争成为导致婚姻破裂的原因。&quot;,
&quot;tianfuxing_desc&quot;: &quot;天相入夫妻宫,代表与伴侣之间的关系比较和谐,有可能会遇到心灵契合的伴侣,但也需要注意保持自己的个性和自我价值。&quot;
&quot;fuxing_desc&quot;: &quot;此宫副星总体为吉,故诸多利因素加倍,不利因素减半,加吉。龙池入奴仆宫,主虽然表现平凡.......&quot;,//辅星详解
},
{ //gong_pan[4]信息
&quot;minggong&quot;: &quot;兄弟宫&quot;,
&quot;yinshou&quot;: &quot;乙卯&quot;,
&quot;jiangxing&quot;: &quot;息神&quot;,
&quot;changsheng&quot;: &quot;死&quot;,
&quot;daxian&quot;: &quot;15-24&quot;,
&quot;xiaoxian&quot;: &quot;病符&quot;,
&quot;boshi&quot;: &quot;青龙&quot;,
&quot;ziweixing&quot;: &quot;太阳&quot;,
&quot;ziweixing_xingyao&quot;: &quot;闲&quot;,
&quot;ziweixing_sihua&quot;: &quot;&quot;,
&quot;tianfuxing&quot;: &quot;天梁&quot;,
&quot;tianfuxing_xingyao&quot;: &quot;陷&quot;,
&quot;tianfuxing_sihua&quot;: &quot;&quot;,
&quot;monthxing&quot;: &quot;&quot;,
&quot;monthxing_xingyao&quot;: &quot;&quot;,
&quot;monthxing_sihua&quot;: &quot;&quot;,
&quot;hourxing&quot;: &quot;&quot;,
&quot;hourxing_xingyao&quot;: &quot;&quot;,
&quot;hourxing_sihua&quot;: &quot;&quot;,
&quot;yearganxing&quot;: &quot;天福,天官&quot;,
&quot;yearganxing_xingyao&quot;: &quot;&quot;,
&quot;yearganxing_sihua&quot;: &quot;&quot;,
&quot;yearzhixing&quot;: &quot;&quot;,
&quot;yearzhixing_xingyao&quot;: &quot;&quot;,
&quot;yearzhixing_sihua&quot;: &quot;&quot;,
&quot;qitaxing&quot;: &quot;&quot;,
&quot;qitaxing_xingyao&quot;: &quot;&quot;,
&quot;qitaxing_sihua&quot;: &quot;&quot;,
&quot;ziweixing_desc&quot;: &quot;太阳入兄弟宫,代表兄弟之间很阳光且积极,经常喜欢活跃和交际,具有自信和乐观的特点,但也可能有些自我中心,需要注意在兄弟之间的均衡发展。&quot;,
&quot;tianfuxing_desc&quot;: &quot;天梁入兄弟宫,代表兄弟之间可能会出现竞争和挑战,自己也具有一定的才能和能力,但也需要注意在兄弟之间的平衡和协调,不要产生过多的争斗和矛盾。&quot;
&quot;fuxing_desc&quot;: &quot;此宫副星总体为吉,故诸多利因素加倍,不利因素减半,加吉。龙池入奴仆宫,主虽然表现平凡.......&quot;,//辅星详解
},
{ //gong_pan[5]信息
&quot;minggong&quot;: &quot;命宫&quot;,
&quot;yinshou&quot;: &quot;丙辰&quot;,
&quot;jiangxing&quot;: &quot;华盖&quot;,
&quot;changsheng&quot;: &quot;墓&quot;,
&quot;daxian&quot;: &quot;5-14&quot;,
&quot;xiaoxian&quot;: &quot;岁建&quot;,
&quot;boshi&quot;: &quot;力士&quot;,
&quot;ziweixing&quot;: &quot;&quot;,
&quot;ziweixing_xingyao&quot;: &quot;&quot;,
&quot;ziweixing_sihua&quot;: &quot;&quot;,
&quot;tianfuxing&quot;: &quot;七杀&quot;,
&quot;tianfuxing_xingyao&quot;: &quot;庙&quot;,
&quot;tianfuxing_sihua&quot;: &quot;&quot;,
&quot;monthxing&quot;: &quot;&quot;,
&quot;monthxing_xingyao&quot;: &quot;&quot;,
&quot;monthxing_sihua&quot;: &quot;&quot;,
&quot;hourxing&quot;: &quot;文昌&quot;,
&quot;hourxing_xingyao&quot;: &quot;旺&quot;,
&quot;hourxing_sihua&quot;: &quot;&quot;,
&quot;yearganxing&quot;: &quot;陀罗&quot;,
&quot;yearganxing_xingyao&quot;: &quot;陷&quot;,
&quot;yearganxing_sihua&quot;: &quot;&quot;,
&quot;yearzhixing&quot;: &quot;华盖&quot;,
&quot;yearzhixing_xingyao&quot;: &quot;&quot;,
&quot;yearzhixing_sihua&quot;: &quot;&quot;,
&quot;qitaxing&quot;: &quot;铃星,三台&quot;,
&quot;qitaxing_xingyao&quot;: &quot;&quot;,
&quot;qitaxing_sihua&quot;: &quot;&quot;,
&quot;ziweixing_desc&quot;: &quot;无紫微星入宫,暂无详解&quot;,
&quot;tianfuxing_desc&quot;: &quot;七杀星是一颗凶星,代表着杀气和破坏力。七杀入命的人通常具有竞争心强、进取心强、决策果断的特点。但是,这些人也容易陷入争斗和冲突中,需要注意控制自己的情绪和行为。&quot;
&quot;fuxing_desc&quot;: &quot;此宫副星总体为吉,故诸多利因素加倍,不利因素减半,加吉。龙池入奴仆宫,主虽然表现平凡.......&quot;,//辅星详解
},
{ //gong_pan[6]信息
&quot;minggong&quot;: &quot;父母宫&quot;,
&quot;yinshou&quot;: &quot;丁巳&quot;,
&quot;jiangxing&quot;: &quot;劫煞&quot;,
&quot;changsheng&quot;: &quot;绝&quot;,
&quot;daxian&quot;: &quot;115-124&quot;,
&quot;xiaoxian&quot;: &quot;晦气&quot;,
&quot;boshi&quot;: &quot;博士&quot;,
&quot;ziweixing&quot;: &quot;天机&quot;,
&quot;ziweixing_xingyao&quot;: &quot;平&quot;,
&quot;ziweixing_sihua&quot;: &quot;忌&quot;,
&quot;tianfuxing&quot;: &quot;&quot;,
&quot;tianfuxing_xingyao&quot;: &quot;&quot;,
&quot;tianfuxing_sihua&quot;: &quot;&quot;,
&quot;monthxing&quot;: &quot;天刑,天巫&quot;,
&quot;monthxing_xingyao&quot;: &quot;&quot;,
&quot;monthxing_sihua&quot;: &quot;&quot;,
&quot;hourxing&quot;: &quot;地空,地劫&quot;,
&quot;hourxing_xingyao&quot;: &quot;&quot;,
&quot;hourxing_sihua&quot;: &quot;&quot;,
&quot;yearganxing&quot;: &quot;禄存&quot;,
&quot;yearganxing_xingyao&quot;: &quot;庙&quot;,
&quot;yearganxing_sihua&quot;: &quot;&quot;,
&quot;yearzhixing&quot;: &quot;天空,天喜,孤辰,劫杀&quot;,
&quot;yearzhixing_xingyao&quot;: &quot;&quot;,
&quot;yearzhixing_sihua&quot;: &quot;&quot;,
&quot;qitaxing&quot;: &quot;&quot;,
&quot;qitaxing_xingyao&quot;: &quot;&quot;,
&quot;qitaxing_sihua&quot;: &quot;&quot;,
&quot;ziweixing_desc&quot;: &quot;在父母宫,天机代表着智慧、计谋,善于谋略策划,天机主人通常会受到父母的照顾和关爱,也可能具备较高的智慧和洞察力,能够为家庭带来好运。但也可能带来过于谨慎、优柔寡断的性格特点。&quot;,
&quot;tianfuxing_desc&quot;: &quot;无天府星入宫,暂无详解&quot;
&quot;fuxing_desc&quot;: &quot;此宫副星总体为吉,故诸多利因素加倍,不利因素减半,加吉。龙池入奴仆宫,主虽然表现平凡.......&quot;,//辅星详解
},
{ //gong_pan[7]信息
&quot;minggong&quot;: &quot;福德宫&quot;,
&quot;yinshou&quot;: &quot;戊午&quot;,
&quot;jiangxing&quot;: &quot;灾煞&quot;,
&quot;changsheng&quot;: &quot;胎&quot;,
&quot;daxian&quot;: &quot;105-114&quot;,
&quot;xiaoxian&quot;: &quot;丧门&quot;,
&quot;boshi&quot;: &quot;官府&quot;,
&quot;ziweixing&quot;: &quot;紫微&quot;,
&quot;ziweixing_xingyao&quot;: &quot;旺&quot;,
&quot;ziweixing_sihua&quot;: &quot;&quot;,
&quot;tianfuxing&quot;: &quot;&quot;,
&quot;tianfuxing_xingyao&quot;: &quot;&quot;,
&quot;tianfuxing_sihua&quot;: &quot;&quot;,
&quot;monthxing&quot;: &quot;&quot;,
&quot;monthxing_xingyao&quot;: &quot;&quot;,
&quot;monthxing_sihua&quot;: &quot;&quot;,
&quot;hourxing&quot;: &quot;&quot;,
&quot;hourxing_xingyao&quot;: &quot;&quot;,
&quot;hourxing_sihua&quot;: &quot;&quot;,
&quot;yearganxing&quot;: &quot;擎羊&quot;,
&quot;yearganxing_xingyao&quot;: &quot;&quot;,
&quot;yearganxing_sihua&quot;: &quot;&quot;,
&quot;yearzhixing&quot;: &quot;凤阁,解神,蜚廉&quot;,
&quot;yearzhixing_xingyao&quot;: &quot;&quot;,
&quot;yearzhixing_sihua&quot;: &quot;&quot;,
&quot;qitaxing&quot;: &quot;&quot;,
&quot;qitaxing_xingyao&quot;: &quot;&quot;,
&quot;qitaxing_sihua&quot;: &quot;&quot;,
&quot;ziweixing_desc&quot;: &quot;紫微在福德宫代表着大好机会,主要是因为紫微星是天府星的正印,天府星又与财运相关。所以,当紫微星在福德宫出现时,表明此人拥有良好的财运和事业机遇。&quot;,
&quot;tianfuxing_desc&quot;: &quot;无天府星入宫,暂无详解&quot;
&quot;fuxing_desc&quot;: &quot;此宫副星总体为吉,故诸多利因素加倍,不利因素减半,加吉。龙池入奴仆宫,主虽然表现平凡.......&quot;,//辅星详解
},
{ //gong_pan[8]信息
&quot;minggong&quot;: &quot;田宅宫&quot;,
&quot;yinshou&quot;: &quot;己未&quot;,
&quot;jiangxing&quot;: &quot;天煞&quot;,
&quot;changsheng&quot;: &quot;养&quot;,
&quot;daxian&quot;: &quot;95-104&quot;,
&quot;xiaoxian&quot;: &quot;贯索&quot;,
&quot;boshi&quot;: &quot;伏兵&quot;,
&quot;ziweixing&quot;: &quot;&quot;,
&quot;ziweixing_xingyao&quot;: &quot;&quot;,
&quot;ziweixing_sihua&quot;: &quot;&quot;,
&quot;tianfuxing&quot;: &quot;&quot;,
&quot;tianfuxing_xingyao&quot;: &quot;&quot;,
&quot;tianfuxing_sihua&quot;: &quot;&quot;,
&quot;monthxing&quot;: &quot;&quot;,
&quot;monthxing_xingyao&quot;: &quot;&quot;,
&quot;monthxing_sihua&quot;: &quot;&quot;,
&quot;hourxing&quot;: &quot;&quot;,
&quot;hourxing_xingyao&quot;: &quot;&quot;,
&quot;hourxing_sihua&quot;: &quot;&quot;,
&quot;yearganxing&quot;: &quot;天钺&quot;,
&quot;yearganxing_xingyao&quot;: &quot;庙&quot;,
&quot;yearganxing_sihua&quot;: &quot;&quot;,
&quot;yearzhixing&quot;: &quot;&quot;,
&quot;yearzhixing_xingyao&quot;: &quot;&quot;,
&quot;yearzhixing_sihua&quot;: &quot;&quot;,
&quot;qitaxing&quot;: &quot;恩光&quot;,
&quot;qitaxing_xingyao&quot;: &quot;&quot;,
&quot;qitaxing_sihua&quot;: &quot;&quot;,
&quot;ziweixing_desc&quot;: &quot;无紫微星入宫,暂无详解&quot;,
&quot;tianfuxing_desc&quot;: &quot;无天府星入宫,暂无详解&quot;
&quot;fuxing_desc&quot;: &quot;此宫副星总体为吉,故诸多利因素加倍,不利因素减半,加吉。龙池入奴仆宫,主虽然表现平凡.......&quot;,//辅星详解
},
{ //gong_pan[9]信息
&quot;minggong&quot;: &quot;官禄宫&quot;,
&quot;yinshou&quot;: &quot;庚申&quot;,
&quot;jiangxing&quot;: &quot;指背&quot;,
&quot;changsheng&quot;: &quot;长生&quot;,
&quot;daxian&quot;: &quot;85-94&quot;,
&quot;xiaoxian&quot;: &quot;官符&quot;,
&quot;boshi&quot;: &quot;大耗&quot;,
&quot;ziweixing&quot;: &quot;&quot;,
&quot;ziweixing_xingyao&quot;: &quot;&quot;,
&quot;ziweixing_sihua&quot;: &quot;&quot;,
&quot;tianfuxing&quot;: &quot;破军&quot;,
&quot;tianfuxing_xingyao&quot;: &quot;陷&quot;,
&quot;tianfuxing_sihua&quot;: &quot;&quot;,
&quot;monthxing&quot;: &quot;&quot;,
&quot;monthxing_xingyao&quot;: &quot;&quot;,
&quot;monthxing_sihua&quot;: &quot;&quot;,
&quot;hourxing&quot;: &quot;封诰&quot;,
&quot;hourxing_xingyao&quot;: &quot;&quot;,
&quot;hourxing_sihua&quot;: &quot;&quot;,
&quot;yearganxing&quot;: &quot;&quot;,
&quot;yearganxing_xingyao&quot;: &quot;&quot;,
&quot;yearganxing_sihua&quot;: &quot;&quot;,
&quot;yearzhixing&quot;: &quot;龙池&quot;,
&quot;yearzhixing_xingyao&quot;: &quot;&quot;,
&quot;yearzhixing_sihua&quot;: &quot;&quot;,
&quot;qitaxing&quot;: &quot;火星,天才,天寿&quot;,
&quot;qitaxing_xingyao&quot;: &quot;陷&quot;,
&quot;qitaxing_sihua&quot;: &quot;&quot;,
&quot;ziweixing_desc&quot;: &quot;无紫微星入宫,暂无详解&quot;,
&quot;tianfuxing_desc&quot;: &quot;在官禄宫中的破军代表着一个人的力量、战斗能力和进取心,通常表现为有冲劲、有闯劲、有爆发力,能够在困难和挑战面前勇往直前。此外,破军也可以代表事业和财富,因此破军强旺的人通常有着强大的事业和财富潜力。&quot;
&quot;fuxing_desc&quot;: &quot;此宫副星总体为吉,故诸多利因素加倍,不利因素减半,加吉。龙池入奴仆宫,主虽然表现平凡.......&quot;,//辅星详解
},
{ //gong_pan[10]信息
&quot;minggong&quot;: &quot;奴仆宫&quot;,
&quot;yinshou&quot;: &quot;辛酉&quot;,
&quot;jiangxing&quot;: &quot;咸池&quot;,
&quot;changsheng&quot;: &quot;沐浴&quot;,
&quot;daxian&quot;: &quot;75-84&quot;,
&quot;xiaoxian&quot;: &quot;小耗&quot;,
&quot;boshi&quot;: &quot;病符&quot;,
&quot;ziweixing&quot;: &quot;&quot;,
&quot;ziweixing_xingyao&quot;: &quot;&quot;,
&quot;ziweixing_sihua&quot;: &quot;&quot;,
&quot;tianfuxing&quot;: &quot;&quot;,
&quot;tianfuxing_xingyao&quot;: &quot;&quot;,
&quot;tianfuxing_sihua&quot;: &quot;&quot;,
&quot;monthxing&quot;: &quot;天姚&quot;,
&quot;monthxing_xingyao&quot;: &quot;&quot;,
&quot;monthxing_sihua&quot;: &quot;&quot;,
&quot;hourxing&quot;: &quot;&quot;,
&quot;hourxing_xingyao&quot;: &quot;&quot;,
&quot;hourxing_sihua&quot;: &quot;&quot;,
&quot;yearganxing&quot;: &quot;&quot;,
&quot;yearganxing_xingyao&quot;: &quot;&quot;,
&quot;yearganxing_sihua&quot;: &quot;&quot;,
&quot;yearzhixing&quot;: &quot;咸池&quot;,
&quot;yearzhixing_xingyao&quot;: &quot;&quot;,
&quot;yearzhixing_sihua&quot;: &quot;&quot;,
&quot;qitaxing&quot;: &quot;天使&quot;,
&quot;qitaxing_xingyao&quot;: &quot;&quot;,
&quot;qitaxing_sihua&quot;: &quot;&quot;,
&quot;ziweixing_desc&quot;: &quot;无紫微星入宫,暂无详解&quot;,
&quot;tianfuxing_desc&quot;: &quot;无天府星入宫,暂无详解&quot;
&quot;fuxing_desc&quot;: &quot;此宫副星总体为吉,故诸多利因素加倍,不利因素减半,加吉。龙池入奴仆宫,主虽然表现平凡.......&quot;,//辅星详解
},
{ //gong_pan[11]信息
&quot;minggong&quot;: &quot;迁移宫&quot;,
&quot;yinshou&quot;: &quot;壬戌&quot;,
&quot;jiangxing&quot;: &quot;月煞&quot;,
&quot;changsheng&quot;: &quot;冠带&quot;,
&quot;daxian&quot;: &quot;65-74&quot;,
&quot;xiaoxian&quot;: &quot;大耗&quot;,
&quot;boshi&quot;: &quot;喜神&quot;,
&quot;ziweixing&quot;: &quot;廉贞&quot;,
&quot;ziweixing_xingyao&quot;: &quot;庙&quot;,
&quot;ziweixing_sihua&quot;: &quot;&quot;,
&quot;tianfuxing&quot;: &quot;天府&quot;,
&quot;tianfuxing_xingyao&quot;: &quot;平&quot;,
&quot;tianfuxing_sihua&quot;: &quot;&quot;,
&quot;monthxing&quot;: &quot;阴煞&quot;,
&quot;monthxing_xingyao&quot;: &quot;&quot;,
&quot;monthxing_sihua&quot;: &quot;&quot;,
&quot;hourxing&quot;: &quot;文曲&quot;,
&quot;hourxing_xingyao&quot;: &quot;平&quot;,
&quot;hourxing_sihua&quot;: &quot;&quot;,
&quot;yearganxing&quot;: &quot;&quot;,
&quot;yearganxing_xingyao&quot;: &quot;&quot;,
&quot;yearganxing_sihua&quot;: &quot;&quot;,
&quot;yearzhixing&quot;: &quot;天虚&quot;,
&quot;yearzhixing_xingyao&quot;: &quot;&quot;,
&quot;yearzhixing_sihua&quot;: &quot;&quot;,
&quot;qitaxing&quot;: &quot;八座&quot;,
&quot;qitaxing_xingyao&quot;: &quot;&quot;,
&quot;qitaxing_sihua&quot;: &quot;&quot;,
&quot;ziweixing_desc&quot;: &quot;在迁移宫中,廉贞星代表个人的忠诚、正义和责任心。如果廉贞星在吉位,个人在新环境中有更多机会和条件发挥自己的正义感和责任心,得到他人的尊重和信任;如果廉贞星在凶位,则可能会面临道德和责任的问题&quot;,
&quot;tianfuxing_desc&quot;: &quot;在迁移宫中,天府代表了财富、资产、物质方面的变动。如果天府被带到了迁移宫,可能意味着你将会面临财务上的变化,可能是有意外的收入,也可能是需要花费更多的金钱去处理一些事情。&quot;
&quot;fuxing_desc&quot;: &quot;此宫副星总体为吉,故诸多利因素加倍,不利因素减半,加吉。龙池入奴仆宫,主虽然表现平凡.......&quot;,//辅星详解
}
]
}
}</code></pre>
<h3>失败返回样例</h3>
<pre><code class="language-json">{
&quot;msg&quot;: &quot;姓名不能为空&quot;,
&quot;code&quot;: 400
}</code></pre>
<h3>返回字段说明</h3>
<table>
<thead>
<tr>
<th>字段名</th>
<th><div style="width:400px">说明</div></th>
</tr>
</thead>
<tbody>
<tr>
<td>code</td>
<td>返回码,详见返回码说明</td>
</tr>
<tr>
<td>msg</td>
<td>code对应的描述</td>
</tr>
<tr>
<td>charge</td>
<td>计费标志</td>
</tr>
<tr>
<td>taskNo</td>
<td>本次请求号</td>
</tr>
<tr>
<td>data</td>
<td>返回具体结果,详见成功返回样例</td>
</tr>
</tbody>
</table>
<h3>code返回码说明</h3>
<table>
<thead>
<tr>
<th>code</th>
<th><div style="width:400px">说明</div></th>
</tr>
</thead>
<tbody>
<tr>
<td>200</td>
<td>成功(计费)</td>
</tr>
<tr>
<td>400</td>
<td>参数错误</td>
</tr>
<tr>
<td>404</td>
<td>请求地址不正确</td>
</tr>
<tr>
<td>500</td>
<td>服务商维护,请稍候再试</td>
</tr>
<tr>
<td>601</td>
<td>接口未开通</td>
</tr>
<tr>
<td>602</td>
<td>账号停用</td>
</tr>
<tr>
<td>603</td>
<td>余额不足请充值</td>
</tr>
<tr>
<td>604</td>
<td>接口停用</td>
</tr>
<tr>
<td>606</td>
<td>调用超限,请稍候再试</td>
</tr>
<tr>
<td>607</td>
<td>ip不在白名单</td>
</tr>
<tr>
<td>609</td>
<td>请求过于频繁,请稍候再试</td>
</tr>
<tr>
<td>610</td>
<td>请求超时</td>
</tr>
<tr>
<td>999</td>
<td>其他,以实际返回为准</td>
</tr>
</tbody>
</table>