Here's how it works:
Say you are looking at a project with this URL:
http://www.instructables.com/ex/i/45B0E894078E1029853F001143E7E506
Just grab the unique ID at the end of that and put it into a syndication URL like this:
http://www.instructables.com/partner?name=none&style=all&format=html&project=45B0E894078E1029853F001143E7E506
This returns an unformatted HTML version of the complete project content! You can wrap that in your own stylesheet, etc. You can also get the unique ID from our RSS feeds, for example from the recent project feed:
http://www.instructables.com/ex/y/process/rss.xml
the unique ID appears in the GUID tag for each project.
Automation Scripts
We've provided a perl script below which you can use to automatically generate and update your web page with all your instructables projects. The script checks your RSS feed on instructables and makes an index page linking to the syndicated project pages. It's a great starting point for you to put your own stylesheet around and link into your personal website.
If you make your own syndication code and scripts, please post them too! and links to your syndicated site!
Remove these ads by
Signing Up| « Previous Step | Download PDFView All Steps | Next Step » |
















![[blog 2006-04-05] Maker Faire](/static/defaultIMG/default.SQUARE.gif)

















ERROR 400: can not find instructable: 45B0E894078E1029853F001143E7E506 -
ERROR 400: can not find instructable: 45B0E894078E1029853F001143E7E506
Due to the structure of my site I have to pull in the instructable pages with an iframe, as that sandboxes the instructable from my local css I was wondering if anyone knows a workaround
here's my page, thanks
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Frameset//EN">
<html>
<HEAD>
<meta http-equiv="Content-Type" content="text/html; charset=ISO-8859-1">
<link href="../css/default.css" rel="stylesheet" type="text/css">
<link href="../css/instructables.css" rel="stylesheet" type="text/css">
<script src="../js/tabctrl.js" type="text/javascript"></script>
<script src="../js/define.js" type="text/javascript"></script>
<script src="../js/main.js" type="text/javascript"></script>
</HEAD>
<body>
<script>selectTab(Tab_projects,1)</script>
<iframe src="http://www.instructables.com/partner?name=none&style=all&format=html&project=E14OT83LJCEZ7BETJH" scrolling="auto" align="left" height="100%" width="100%" frameborder="0" />
</body>
</html>
For some reason the tool tips are not working properly? Any ideas?
(although I haven't thrown together a stylesheet, so the links are just unformatted so far)
excellent stuff, squidlings!