Using the restfb.com API I'm posting to the users FB wall. The Google image url is made, the link works in the browser, but not when posted to the fb service.
def image = "http://maps.google.com/maps/api/staticmap?center=${event.latitude},${event.longitude}&zoom=13&size=110x110&markers=color:red|size:mid|${event.latitude},${.event.longitude}&sensor=false" FacebookType publishMessageResponse = facebookClient.publish("me/feed", FacebookType.class, Parameter.with("picture", image.toString()), Parameter.with("link", eventLink), Parameter.with("name", "name"), Parameter.with("caption", "caption"), Parameter.with("description", "description"), Parameter.with("actions", ["name": userName, "link": profileLink])) -- You received this message because you are subscribed to the Google Groups "Google Maps JavaScript API v3" group. To view this discussion on the web visit https://groups.google.com/d/msg/google-maps-js-api-v3/-/qapzbvaah50J. To post to this group, send email to [email protected]. To unsubscribe from this group, send email to [email protected]. For more options, visit this group at http://groups.google.com/group/google-maps-js-api-v3?hl=en.
