I'm looking for a way to create a reccurent event in a calendar with a http request in a anchor html's element. I saw this method in other question, and it's work:
<a href="http://www.google.com/calendar/event?action=TEMPLATE&text=Example%20Event&dates=20131124T010000Z/20131124T020000Z&details=Event%20Details%20Here&location=123%20Main%20St%2C%20Example%2C%20NY">Add to gCal</a>
Then, I look in the Google API, and find this:
"recurrence": [
"RRULE:FREQ=WEEKLY;UNTIL=20110701T170000Z",]
Obviously, I cannot put that in the anchor, but works like a clue. Thanks everybody.