PDA

View Full Version : Got bugs? Features? New release coming...


onethumb
Oct-06-2006, 08:17 AM
Hot on the heels of last week's release, I have another one almost done. I think you'll like it, especially anyone doing javascript stuff. :)

But I can't fix bugs or add new features without your feedback. Make sure you cruise on over and add your very own SmugBugs (http://smugmug.jot.com/BugReporter) for any bugs and/or features you've got.

Don

BeachBill
Oct-06-2006, 11:15 AM
Hot on the heels of last week's release, I have another one almost done. I think you'll like it, especially anyone doing javascript stuff. :)

But I can't fix bugs or add new features without your feedback. Make sure you cruise on over and add your very own SmugBugs (http://smugmug.jot.com/BugReporter) for any bugs and/or features you've got.

Don

Is this for API stuff only, or general smugbugs?

Andy
Oct-06-2006, 11:54 AM
Is this for API stuff only, or general smugbugs?
http://www.dgrin.com/showthread.php?t=44268

onethumb
Oct-06-2006, 03:50 PM
Is this for API stuff only, or general smugbugs?

Everything and anything SmugMug related.

Ditto for the rest of the Wiki. If it's about SmugMug, and someone else in this universe might want to reference it, stick it on the Wiki.

Don

Stardog
Oct-17-2006, 01:24 PM
Hot on the heels of last week's release, I have another one almost done. I think you'll like it, especially anyone doing javascript stuff. :)

But I can't fix bugs or add new features without your feedback. Make sure you cruise on over and add your very own SmugBugs (http://smugmug.jot.com/BugReporter) for any bugs and/or features you've got.

Don

Will the next release fix some of the problem listed in SmugBug list? Also, when you mention javascript, are you referring to JSON support? That would be nice if I could use JSON in place of XML-RPC.

Thanks

Stardog
Oct-17-2006, 01:42 PM
At one time I could swear that the documentation stated that the method smugmug.images.getInfo returned the image URL info as well. Now it doesn't say that (on smugmug.com or on the wiki), but It still returns the image URL struct. Perhaps it was left out by accident?

mhilbush
Oct-17-2006, 03:47 PM
At one time I could swear that the documentation stated that the method smugmug.images.getInfo returned the image URL info as well. Now it doesn't say that (on smugmug.com or on the wiki), but It still returns the image URL struct. Perhaps it was left out by accident?

I don't recall the REST API docs ever saying anything about the image URLs, but I've been using the REST API for just a couple months. The image URLs are returned in the response for smugmug.images.getInfo, and I sure hope it stays that way.

Mark

onethumb
Oct-17-2006, 03:50 PM
Will the next release fix some of the problem listed in SmugBug list? Also, when you mention javascript, are you referring to JSON support? That would be nice if I could use JSON in place of XML-RPC.

Thanks

Yeah, one dirty little secret that's not-so-secret is that JSON *and* serialized PHP output are now in the beta (v1.1.1) API.

Just use endpoints that use "json" or "php" in place of "rest" or "xml-rpc".

The only reason it's a "secret" right now is I haven't had time to rigorously test them yet.

Enjoy!

Don

devbobo
Oct-17-2006, 03:50 PM
The image URLs are returned in the response for smugmug.images.getInfo, and I sure hope it stays that way.
Mark

Nothing is going to change, I will fix the documentation

mhilbush
Oct-17-2006, 03:50 PM
I count 15 SmugBugs logged against the APIs (ok, a couple are enhancement requests). What's the likelihood these will be actioned in the near future?

Thanks,
Mark

devbobo
Oct-17-2006, 04:06 PM
I count 15 SmugBugs logged against the APIs (ok, a couple are enhancement requests). What's the likelihood these will be actioned in the near future?

Thanks,
Mark

Mark,

Don's been outta town..and with the addition of JSON and PHP support, I can't really say how long it's going to take.

It depends how many bugs we find :D

I will try to keep you in the loop.

Cheers,

David

Stardog
Oct-18-2006, 01:31 PM
Yeah, one dirty little secret that's not-so-secret is that JSON *and* serialized PHP output are now in the beta (v1.1.1) API.

Just use endpoints that use "json" or "php" in place of "rest" or "xml-rpc".

The only reason it's a "secret" right now is I haven't had time to rigorously test them yet.

Enjoy!

Don

That's awesome! I tried the serialized php endpoint. I can get the login methods to work, but any other methods I try return 'invalid API Key'.

devbobo
Oct-18-2006, 02:21 PM
That's awesome! I tried the serialized php endpoint. I can get the login methods to work, but any other methods I try return 'invalid API Key'.

Stardog,

What other methods were u trying ?

I tried a few (smugmug.users.getTree, smugmug.categories.get, smugmug.albums.get) and they all were working fine.

Just check that you are using a valid sessionID, as sometimes this seems to return 'invalid api key'.

Cheers,

David

Stardog
Oct-18-2006, 03:55 PM
Stardog,

What other methods were u trying ?

I tried a few (smugmug.users.getTree, smugmug.categories.get, smugmug.albums.get) and they all were working fine.

Just check that you are using a valid sessionID, as sometimes this seems to return 'invalid api key'.

Cheers,

David

I went and double checked the url I was sending and your right, I didn't have a correct sessionID. That fixed it!

Thanks,

Brian

devbobo
Oct-18-2006, 04:24 PM
I went and double checked the url I was sending and your right, I didn't have a correct sessionID. That fixed it!

Thanks,

Brian

:thumb let me know if you run into any issues.