The problem is that in the current version I'm not sure you can.
If you set the callback url to just be:
http://anglerspot.com/
Then the permalinks will work, but your main canvas url will be wrong,
since your blog's homepage is
http://anglerspot.com/blog/
If you set the callback url correctly, but change your permalinks to
not have /blog/ in them, does that work?
I don't think so, because WPBook will be looking for them at /blog/
2009/09 etc. but the blog will be hosting them at
anglerspot.com/
2009/09 etc.
I think you may have to edit the code directly - as a hack until I get
this fixed.
There are at least two places, unfortunately, where an offset is
calculated as a way to determine what the permalink should be inside
FB - in WPBook.php, it's at:
Lines 463-469
Lines 538-543
In each case, you'll need to change the offset, adding 5 more chars
(blog/)
So change:
$my_offset = strlen(get_option('home'));
to
$my_offset = strlen(get_option('home')) + 5;
in both places
Leave your callback url set to
http://anglerspot.com/blog/
and leave the /blog/ part in your permalink structure
That should do it