Giter VIP home page Giter VIP logo

Comments (9)

krasnoukhov avatar krasnoukhov commented on July 30, 2024

Are you sure you are sending parameters as x-www-form-urlencoded? Unfortunately multipart/form-data isn't supported.

from api.

cowens avatar cowens commented on July 30, 2024

No, I was taking whatever the default was. I will try again when I am in
front of a computer. There is still the issue of sending a response that
says "OK" when nothing has been done. I would have expected an error like
"can't find id parameter, is your request x-www-form-urlencoded?"
On Jul 1, 2013 5:28 AM, "Dmitry Krasnoukhov" [email protected]
wrote:

Are you sure you are sending parameters as x-www-form-urlencoded?
Unfortunately multipart/form-data isn't supported.


Reply to this email directly or view it on GitHubhttps://github.com//issues/3#issuecomment-20271436
.

from api.

cowens avatar cowens commented on July 30, 2024

Yep, that seems to work. So the bug is that you say OK when you shouldn't,
not that marking as read doesn't work.
On Jul 1, 2013 5:28 AM, "Dmitry Krasnoukhov" [email protected]
wrote:

Are you sure you are sending parameters as x-www-form-urlencoded?
Unfortunately multipart/form-data isn't supported.


Reply to this email directly or view it on GitHubhttps://github.com//issues/3#issuecomment-20271436
.

from api.

krasnoukhov avatar krasnoukhov commented on July 30, 2024

Sure, you are right, I've added parameters verification with corresponding error results.

from api.

DanielSundberg avatar DanielSundberg commented on July 30, 2024

This was closed over a year ago as fixed. However, I still get 'ok' as result but no error message trying the same command as in the initial post.

from api.

jfiorato avatar jfiorato commented on July 30, 2024

Would you be able to send your code so we can investigate?

from api.

DanielSundberg avatar DanielSundberg commented on July 30, 2024

Yes I know, very late to get back 2 years later. having another go at this and is stuck at the same place:

markAsRead(auth: string, id: string) {
    const params = {
        // output: 'json',
        a: 'user/-/state/com.google/read',
        i: 'tag:google.com,2005:reader/item/' + id
    };
    let path = '/reader/api/0/edit-tag';
    const contentParams = this.serialize(params);
    const itemContentUrl = path + '?' + contentParams;
    let response = fetch(itemContentUrl, {
        method: 'POST',
        headers: new Headers({
            'Accept': 'application/json',
            'Content-Type': 'application/json',
            'Authorization': 'GoogleLogin auth=' + auth,
        }),
    });
    return response;
}
private serialize(obj: {}) {
   var str = [];
   for (var p in obj) {
        if (obj.hasOwnProperty(p)) {
            str.push(encodeURIComponent(p) + '=' + encodeURIComponent(obj[p]));
        }
    }
    return str.join('&');
}

image

localhost:3000 proxies calls to The Old Reader, works for all other API calls so guess this is not the problem.

from api.

DanielSundberg avatar DanielSundberg commented on July 30, 2024

Looks like the params should be in the body, thought I tried that but must have gotten something wrong that time, this code is working:

    async markAsRead(auth: string, id: string) {
        const bodyParams = { 
            a: 'user/-/state/com.google/read',
            i: 'tag:google.com,2005:reader/item/' + id,
        };
        let path = '/reader/api/0/edit-tag';
        let response = fetch(path, {
            method: 'POST',
            headers: new Headers({
                'Content-Type': 'application/x-www-form-urlencoded;charset=UTF-8',
                'Authorization': 'GoogleLogin auth=' + auth,
            }),
            body: this.serialize(bodyParams)
        });
        return response;
    }

from api.

DanielSundberg avatar DanielSundberg commented on July 30, 2024

I still think that I should not have gotten OK in my snippet above. Took my some hours to figure this out.

from api.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.