Code Monkey home page Code Monkey logo

Comments (6)

fernandezpablo85 avatar fernandezpablo85 commented on May 23, 2024

Shay,

Working on it right now

from scribejava.

shayerov avatar shayerov commented on May 23, 2024

Thanks!
If you're interested, what I did, is just made sure it's a valid URI rather than URL, and that fixed everything I needed.
Great package by the way! :)

Shay

from scribejava.

fernandezpablo85 avatar fernandezpablo85 commented on May 23, 2024

Cool.

What I changed is this:

http://gist.github.com/616146

Let me know what you think about it

from scribejava.

shayerov avatar shayerov commented on May 23, 2024

Looks cool...
I did

static boolean isUrl(String url)
{
try {
new URI(url);
} catch (URISyntaxException e) {
return false;
}
return true;
// return url.startsWith("http://") || url.startsWith("https://");
}

I'm not sure performance wise what is better, regex or using try/catch, but I think both will work equally good, and since it's only once per service, it's not that bad anyway.

Thanks again

from scribejava.

fernandezpablo85 avatar fernandezpablo85 commented on May 23, 2024

Cool.

I kinda have a weakness for regexes, and don't like the try catch blocks a lot so I think I'll leave as it is for now...

You have the fix on 1.0.4 released just now.

sorry for the delay I've been working my ass of lately :)

from scribejava.

shayerov avatar shayerov commented on May 23, 2024

I know your point of view... I love regexes as well...
Anyway, thanks! I'll let you know if I find more things in the package....

btw - are you thinking about integrating with OAuth 2.0 ? (What Facebook is using...), it's almost the same as OAuth 1, but with some minor changes

from scribejava.

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.