質問編集履歴
1
取得するRSS側の記述
test
CHANGED
File without changes
|
test
CHANGED
@@ -101,3 +101,55 @@
|
|
101
101
|
|
102
102
|
|
103
103
|
ここからの条件の増やし方がわかりませんでした。emptyとか追加してみましたが、まっしろになりました。
|
104
|
+
|
105
|
+
|
106
|
+
|
107
|
+
RSS側のソースを一部抜粋します。
|
108
|
+
|
109
|
+
```ここに言語を入力
|
110
|
+
|
111
|
+
<item>
|
112
|
+
|
113
|
+
<title>記事タイトル1</title>
|
114
|
+
|
115
|
+
<link>https://URL</link>
|
116
|
+
|
117
|
+
<pubDate>Tue, 21 Apr 2020 06:39:45 +0000</pubDate>
|
118
|
+
|
119
|
+
<dc:creator><![CDATA[名前]]></dc:creator>
|
120
|
+
|
121
|
+
<guid isPermaLink="false">https://URL</guid>
|
122
|
+
|
123
|
+
<customtag>https://URL//20200421.pdf</customtag>
|
124
|
+
|
125
|
+
<description><![CDATA[]]></description>
|
126
|
+
|
127
|
+
<content:encoded><![CDATA[]]></content:encoded>
|
128
|
+
|
129
|
+
</item>
|
130
|
+
|
131
|
+
<item>
|
132
|
+
|
133
|
+
<title>記事タイトル2</title>
|
134
|
+
|
135
|
+
<link>https://url/news/4246/</link>
|
136
|
+
|
137
|
+
<pubDate>Tue, 14 Apr 2020 06:48:29 +0000</pubDate>
|
138
|
+
|
139
|
+
<dc:creator><![CDATA[名前]]></dc:creator>
|
140
|
+
|
141
|
+
<guid isPermaLink="false">https://URL</guid>
|
142
|
+
|
143
|
+
<customtag></customtag>
|
144
|
+
|
145
|
+
</item>
|
146
|
+
|
147
|
+
```
|
148
|
+
|
149
|
+
|
150
|
+
|
151
|
+
記事タイトル1では、customtagのpdfを取得できておりますが、
|
152
|
+
|
153
|
+
記事タイトル2の方では、PDFが投稿されていないため空の状態で、
|
154
|
+
|
155
|
+
どこにも飛ばないのでcustomtagがないときは記事詳細URLであるlinkを取得したいと思っています。
|