How to force ‘cron_schedules’ every minute instead 1 hour?

You have the wrong period alias in your code

You added your personal period in my_cron_schedules() as 61sec:

$schedules["61sec"] = array(

but use it in setup_schedule() as 61sek:

wp_schedule_event( current_time('timestamp'), '61sek' , 'expire_ogl');

The other parts of the code look right.