Tv publish api #209
No reviewers
Labels
No labels
area: devops
area: discovery
area: docs
area: livestream
area: proposal
consider soon
dependencies
Epic
good first issue
hacktoberfest
help wanted
icebox
Invalid
level: 1
level: 2
level: 3
level: 4
needs: exploration
needs: grooming
needs: priority
needs: repro
needs: tech design
on hold
priority: blocker
priority: high
priority: low
priority: medium
resilience
Tom's Wishlist
type: bug
type: discussion
type: improvement
type: new feature
type: refactor
type: task
type: testing
unplanned
No milestone
No project
No assignees
1 participant
Notifications
Due date
No due date set.
Dependencies
No dependencies set.
Reference: LBRYCommunity/lbry-redux#209
Loading…
Reference in a new issue
No description provided.
Delete branch "tvPublishAPI"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
Changes sdk api call if method=publish and daemonConnectionString contains "proxy" (interested in better way to do this).
@ -0,0 +1,2 @@
export const SPEECH_STATUS = 'https://spee.ch/api/config/site/publishing';
export const SPEECH_PUBLISH = 'https://spee.ch/api/claim/publish';
👏 good change
@ -149,2 +156,4 @@
});
function checkAndParse(response) {
if (response.status >= 200 && response.status < 300) {
lbry-redux should not know about lbry.tv
I would find any of the following preferable:
apiCall
, that has a parameter for local vs. remote (or a boolean for whether to post the file, or equivalent).@if TARGET
statement by-passing the traditional publish call to so something special for lbry.tv directly inlbry-desktop
this is a magic condition
I believe
x-lbry-auth-token
should not be allowed in lbry-reduxdoes this have to be in
lbry-redux
?@ -149,3 +157,4 @@
function checkAndParse(response) {
if (response.status >= 200 && response.status < 300) {
return response.json();
I'm not against this, but what's the point of the
overrides
if we have to write this function?