update the upload guidelines
This commit is contained in:
parent
e1e0f17902
commit
542e0c3a2f
|
@ -14,7 +14,7 @@ let parser = new Parser({
|
||||||
}
|
}
|
||||||
});
|
});
|
||||||
|
|
||||||
// const CORS_PROXY = "https://cors-anywhere.herokuapp.com/";
|
const CORS_PROXY = "https://cors-fix.status.im/";
|
||||||
|
|
||||||
export const fetchPodcast = url => dispatch => {
|
export const fetchPodcast = url => dispatch => {
|
||||||
dispatch({
|
dispatch({
|
||||||
|
@ -25,7 +25,7 @@ export const fetchPodcast = url => dispatch => {
|
||||||
}
|
}
|
||||||
})
|
})
|
||||||
// Make GET request to Node service to parse RSS feed and send back JSON
|
// Make GET request to Node service to parse RSS feed and send back JSON
|
||||||
parser.parseURL(url, function(err, feed) {
|
parser.parseURL(CORS_PROXY + url, function(err, feed) {
|
||||||
if (feed) {
|
if (feed) {
|
||||||
const title = feed.title
|
const title = feed.title
|
||||||
let website = feed.link
|
let website = feed.link
|
||||||
|
|
|
@ -11,7 +11,7 @@ export const podcasts = [
|
||||||
category: 'status',
|
category: 'status',
|
||||||
name: 'Everything Status',
|
name: 'Everything Status',
|
||||||
creator: 'Henry Dada',
|
creator: 'Henry Dada',
|
||||||
link: 'https://feeds-soundcloud-proxy.status.im/users/soundcloud:users:741837922/sounds.rss',
|
link: 'https://feeds.soundcloud.com/users/soundcloud:users:741837922/sounds.rss',
|
||||||
img:
|
img:
|
||||||
'https://lh3.googleusercontent.com/W5mQLucviakmoHAFldUZbtFkTHw91vbcQk0w8o3woHEm9c4lpaMqi4cmY6bl3HmTSTnCxL5dvwwbDQa0eVGHrT16dhjEQmoAvg1Mk1Gjy-i3QtJjFRk1o5RxaWQ0BDfVn3oTntFF=w2400'
|
'https://lh3.googleusercontent.com/W5mQLucviakmoHAFldUZbtFkTHw91vbcQk0w8o3woHEm9c4lpaMqi4cmY6bl3HmTSTnCxL5dvwwbDQa0eVGHrT16dhjEQmoAvg1Mk1Gjy-i3QtJjFRk1o5RxaWQ0BDfVn3oTntFF=w2400'
|
||||||
},
|
},
|
||||||
|
@ -19,7 +19,7 @@ export const podcasts = [
|
||||||
category: 'status',
|
category: 'status',
|
||||||
name: 'Status Korean Podcast',
|
name: 'Status Korean Podcast',
|
||||||
creator: 'Jinho Jang',
|
creator: 'Jinho Jang',
|
||||||
link: 'https://feeds-soundcloud-proxy.status.im/users/soundcloud:users:772478986/sounds.rss',
|
link: 'https://feeds.soundcloud.com/users/soundcloud:users:772478986/sounds.rss',
|
||||||
img:
|
img:
|
||||||
'https://lh3.googleusercontent.com/D5bCVgLCmW4s1CRTZsZaK5ad7sCHdMxo7VrVBbbPNgGIN8djhXunatFxwvsY5_RM_h4IroxbzroUlLbZDMNGXWN3TOo5Y6g18cS0Q2IN7r_4TSRrfxOpvtAzLSTDgrBeNCTEpAX32w=w2400'
|
'https://lh3.googleusercontent.com/D5bCVgLCmW4s1CRTZsZaK5ad7sCHdMxo7VrVBbbPNgGIN8djhXunatFxwvsY5_RM_h4IroxbzroUlLbZDMNGXWN3TOo5Y6g18cS0Q2IN7r_4TSRrfxOpvtAzLSTDgrBeNCTEpAX32w=w2400'
|
||||||
},
|
},
|
||||||
|
@ -43,7 +43,7 @@ export const podcasts = [
|
||||||
category: 'featured',
|
category: 'featured',
|
||||||
name: 'Onwrd',
|
name: 'Onwrd',
|
||||||
creator: 'Daniel Weinzveg',
|
creator: 'Daniel Weinzveg',
|
||||||
link: 'https://feeds-soundcloud-proxy.status.im/users/soundcloud:users:80553246/sounds.rss',
|
link: 'https://feeds.soundcloud.com/users/soundcloud:users:80553246/sounds.rss',
|
||||||
img:
|
img:
|
||||||
'https://s3-us-west-2.amazonaws.com/anchor-generated-image-bank/production/podcast_uploaded400/639445/639445-1528081749835-3cb9a831dc539.jpg'
|
'https://s3-us-west-2.amazonaws.com/anchor-generated-image-bank/production/podcast_uploaded400/639445/639445-1528081749835-3cb9a831dc539.jpg'
|
||||||
}
|
}
|
||||||
|
|
|
@ -27,7 +27,6 @@ Follow the steps below to make your podcast public.
|
||||||
|
|
||||||
\`\`\`js
|
\`\`\`js
|
||||||
# src/data/podcasts.js
|
# src/data/podcasts.js
|
||||||
# If you use SoundCloud, please add \`https://feeds-soundcloud-proxy.status.im/\` to your RSS URL as below.
|
|
||||||
|
|
||||||
export const podcasts = [
|
export const podcasts = [
|
||||||
{
|
{
|
||||||
|
|
Loading…
Reference in New Issue