Adding Event receivers to al List through REST: Msdn has page about REST calls to add Event Receivers.
https://msdn.microsoft.com/en-us/library/office/jj245049.aspx .
POST http://<sitecollection>/<site>/_api/web/lists(listid)/eventReceivers
What is the bearer token it needs to attach ? I got OAuth token with all the permission for SharePoint online, Still I am not able to get the events if I attach event receivers by above POST call. Could anyone please point me, what Token it needs to attach event receivers, and how to get that token.
Please add the http/error exception the app rise here. Otherwise none will be able give you good answer.
Regarding the office365 oauth you have two steps. First your app asks for token_id and receive one, second phase is to get access_token with the token_id you received from the first call. With the access_token you can use SharePoint services if your app have the necessary permissions. More details here: https://msdn.microsoft.com/en-us/office/office365/howto/common-app-authentication-tasks
I haven worked with REST remote receivers, but this might be an alternative to your task https://github.com/OfficeDev/PnP/tree/master/Samples/Core.EventReceivers.
This is also a good read how app can be connected to the offcie365, but in python: http://dev.office.com/code-samples-detail/2139
You can also search across the PnP examples and see if there isn't example that matches your requirements.